
JAKuT
Mirstīgais-
Posts
245 -
Joined
-
Last visited
Content Type
Profiles
Forums
Calendar
Everything posted by JAKuT
-
tadu erroru rada... Warning: include() [function.include]: URL file-access is disabled in the server configuration in C:\AppServ\www\index.php on line 49 Warning: include(http://localhost/f/latest_posts.php) [function.include]: failed to open stream: no suitable wrapper could be found in C:\AppServ\www\index.php on line 49
-
Tas skripts neiet, nezinu kapec.. visu izdariju kaa vajadzejabet negaja. varbut kads varetu sito partaisit , palidzet uztaisit :/
-
Vot gribeju izdarit, bez nezinu kaa... Man rada taa tas last topic skripts, kad uzraksta aiziet aiz taa ramisa tekst, bet es gribu ja ir liels teksts tad lai saisinas. radisu ar piemeriem: Tagad rada taa ja ir gars teksts Un uztaisit lai rada, laiku kura pievieno, vai izlabo taja topica kaut ko. Citadi rada visu laiku tikai 02:00 23:40 - LAlalalallalalaaalalallal un aiziet aiz ramisa.. Bet gribu lai ir taa, ja ir teksts lielaks par ramiti tad lai izskatas taa lai neiet ara no ramisa. 23:40 - llalalala... Pats skripts: <?php // Noradi datus $host = "localhost"; // db hosts $dbname = "forum"; // DB $dbuser = "root"; // db useris $dbpass = ""; // db parole ?> <?php $platums = "100"; // platums (px) $forums = "/f/"; // foruma url $limits = "7"; // cik posti uzraadiisies $link = mysql_connect($host, $dbuser, $dbpass) or die("Nesanaaca piekonekteeties: " . mysql_error()); mysql_select_db($dbname) or die("Datubaze neekstiste"); mysql_query("SET NAMES UTF-8"); // NEAIZTIEC $kverisdivi = mysql_query("SELECT posts, last_poster_name, last_poster_id, title, tid, forum_id, last_post FROM ibf_topics ORDER BY last_post DESC LIMIT ".$limits.""); echo "<div>"; while($row = mysql_fetch_array( $kverisdivi )) { $datums = $row['start_date']; $piev_datums = date("H:i",$datums); echo "<p><b>$piev_datums - </b> <a style='text-decoration: none' href=\"$forums/index.php?showtopic=".$row[tid]."&view=getnewpost\" title=\"\">".$row[title]."</a><br></p>"; } echo "</div>"; ?>
-
Kad instaleju ip forumu rakstas tads errors. Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 183111 bytes) in C:\AppServ\www\f\ips_kernel\class_db.php on line 1005
-
UP!
-
UP!
-
Kads varetu iedot, vai palidzet atrast driveru? Prieks kameras ACME Pc CAM t041 LOTI VAJAG :/
-
{ client_print(id, print_chat, "[WAR3FT-IMP] Write /vip and u will see how get VIP and VIP privilegies.") } Vajadzetu te uztaisit lai buutu apmeram taa.... [WAR3FT-IMP] Write (green)/vip and u will see how get (green)VIP and (green)VIP privilegies.
-
Rekur tas skripts, varetu shine tu parbaudit vinu... un pateikt vai tas ir vins, man ar crasho serveri.. Un itka izskatas ka sitaja vieta problema kaut akda. /* * Admin Functions */ // Advanced Swear Filter and Punishment plugin uses this function public ADMIN_ServerHandler() { // Make sure WC3 is loaded if ( !WC3_Check() ) { return PLUGIN_HANDLED; } new szCmd[32], szArg1[32], szArg2[32]; read_argv( 0, szCmd, 31 ); read_argv( 1, szArg1, 31 ); read_argv( 2, szArg2, 31 ); new id = str_to_num( szArg1 ); new iXP = str_to_num( szArg2 ); if ( equal( szCmd, "amx_takexp" ) ) { iXP *= -1; iXP += p_data[id][P_XP]; } else if ( equal( szCmd, "changexp" ) ) { iXP += p_data[id][P_XP]; } ADMIN_SetXP( id, iXP ); return PLUGIN_HANDLED; } // This will handle every admin client command public ADMIN_Handler( id ) { new szCmd[32]; read_argv( 0, szCmd, 31 ); // Make sure WC3 is loaded if ( !WC3_Check() && !equal( szCmd, "wc3_disable" ) && !equal( szCmd, "wc3_enable" ) ) { ADMIN_Print( id, "%s WC3 has been disabled by an admin of this server", g_MODclient ); return PLUGIN_HANDLED; } // Make sure the user is an admin if ( !( get_user_flags( id ) & XP_GetAdminFlag() ) ) { client_print( id, print_console, "%L", id, "YOU_HAVE_NO_ACCESS", g_MODclient ); return PLUGIN_HANDLED; } // OK we're free to go!!! new szArg1[32], szArg2[32]; read_argv( 1, szArg1, 31 ); read_argv( 2, szArg2, 31 ); // Give the user XP if ( equal( szCmd, "wc3_givexp" ) || equal( szCmd, "amx_givexp" ) ) { if ( read_argc() < 3 ) { ADMIN_Print( id, "Format: %s <name|#id|auth|@TEAM|@ALL> <xp>", szCmd ); return PLUGIN_HANDLED; } ADMIN_GiveXP( id, szArg1, str_to_num( szArg2 ) ); } // Set the level of a user's race else if ( equal( szCmd, "wc3_setlevel" ) ) { if ( read_argc() < 3 ) { ADMIN_Print( id, "Format: %s <name|#id|auth|@TEAM|@ALL> <level>", szCmd ); return PLUGIN_HANDLED; } new iLevel = str_to_num( szArg2 ); if ( iLevel < 0 || iLevel >= 11 ) { ADMIN_Print( id, "%s Error, level must be in between (or equal to) 0 and 10", g_MODclient ); return PLUGIN_HANDLED; } ADMIN_SetLevel( id, szArg1, iLevel ); } // Give the user an item else if ( equal( szCmd, "wc3_giveitem" ) ) { if ( read_argc() < 3 ) { ADMIN_Print( id, "Format: %s <name|#id|auth|@TEAM|@ALL> <item id or name>", szCmd ); return PLUGIN_HANDLED; } new iItemID; if ( is_str_num( szArg2 ) ) { iItemID = str_to_num( szArg2 ); if ( iItemID > 17 || iItemID < 0 ) { ADMIN_Print( id, "%s Error, item id must be in between (or equal to) 0 and 17", g_MODclient ); return PLUGIN_HANDLED; } } ADMIN_GiveItem( id, szArg1, iItemID ); } // Enable the plugin else if ( equal( szCmd, "wc3_enable" ) ) { // Plugin was already enabled, why re-enable? if ( warcraft3 ) { ADMIN_Print( id, "%s The plugin was already enabled!", g_MODclient ); } // Enable the plugin! else { warcraft3 = true; ADMIN_Print( id, "%s Plugin enabled!", g_MODclient ); } } // Disable the plugin else if ( equal( szCmd, "wc3_disable" ) ) { // Plugin was already enabled, why re-enable? if ( !warcraft3 ) { ADMIN_Print( id, "%s The plugin was already disabled!", g_MODclient ); } // Disable the plugin! else { // What needs to happen here? // - all skills set to 0 for each player // - call SHARED_SetGravity // - call SHARED_SetInvis // - call SHARED_SetSpeed // - stop tasks - like money task for dod // - ULT_ClearIcons( id ) warcraft3 = false; ADMIN_Print( id, "%s Plugin disabled!", g_MODclient ); } } new szArgs[128]; read_args( szArgs, 127 ); ADMIN_Log( id, szCmd, "%s", szArgs ); return PLUGIN_HANDLED; } // Actually set the user's XP ADMIN_SetXP( id, iXP ) { if ( iXP < 0 ) { iXP = 0; } p_data[id][P_XP] = iXP; XP_Check( id ); set_task( 0.3, "WC3_GetUserInput", TASK_GETINPUT + id ); } // Set the user's level ADMIN_SetLevel( id, szTarget[], iLevel ) { new iXP = XP_GetByLevel( iLevel ); new iTarget = 0, bool:bTargetFound = false; // Do this while we continue having a target! while ( ( iTarget = FindTarget( iTarget, szTarget ) ) > 0 ) { ADMIN_SetXP( iTarget, iXP ); client_print( iTarget, print_chat, "%s The admin has set your race's level to %d", g_MODclient, iLevel ); bTargetFound = true; } // No target found :/ if ( !bTargetFound ) { ADMIN_NoTargetFound( id, szTarget, ( iTarget == -2 ) ); } } // Give the user some XP ADMIN_GiveXP( id, szTarget[], iXP ) { new iTarget = 0, bool:bTargetFound = false; // Do this while we continue having a target! while ( ( iTarget = FindTarget( iTarget, szTarget ) ) > 0 ) { ADMIN_SetXP( iTarget, p_data[iTarget][P_XP] + iXP ); client_print( iTarget, print_chat, "%s %L", g_MODclient, iTarget, "THE_ADMIN_GAVE_YOU_EXPERIENCE", iXP ); bTargetFound = true; } // No target found :/ if ( !bTargetFound ) { ADMIN_NoTargetFound( id, szTarget, ( iTarget == -2 ) ); } } // Give the user an item ADMIN_GiveItem( id, szTarget[], iItemID ) { new szItemName[32]; LANG_GetItemName ( iItemID, id, szItemName, 31 ); new iTarget = 0, bool:bTargetFound = false; // Do this while we continue having a target! while ( ( iTarget = FindTarget( iTarget, szTarget ) ) > 0 ) { client_print( iTarget, print_chat, "%s The admin has given you the item '%s'", g_MODclient, szItemName ); ITEM_GiveItem( iTarget, iItemID ); bTargetFound = true; } // No target found :/ if ( !bTargetFound ) { ADMIN_NoTargetFound( id, szTarget, ( iTarget == -2 ) ); } } // Find a user based on szTarget FindTarget( iLastID, szTarget[] ) { new iTarget = -1; // Then we want to basically return everyone! if ( equali( szTarget, "@ALL" ) ) { new players[32], iTotalPlayers, i; get_players( players, iTotalPlayers ); // Loop through and search for the next target for ( i = 0; i < iTotalPlayers; i++ ) { // Target found, so lets return the next one (if possible)!! if ( players[i] == iLastID && i + 1 != iTotalPlayers ) { iTarget = players[i+1]; } } // No target was found so return the first one if ( iTotalPlayers > 0 && iLastID == 0 ) { iTarget = players[0]; } } // Find a target based on the team else if ( szTarget[0] == '@' ) { new iTeam = -1; // Counter-Strike and Condition Zero Checks if ( g_MOD == GAME_CSTRIKE || g_MOD == GAME_CZERO ) { if ( equali( szTarget, "@T" ) ) { iTeam = TEAM_T; } else if ( equali( szTarget, "@CT" ) ) { iTeam = TEAM_CT; } } // Day of Defeat check else if ( g_MOD == GAME_DOD ) { if ( equali( szTarget, "@ALLIES" ) ) { iTeam = ALLIES; } else if ( equali( szTarget, "@AXIS" ) ) { iTeam = AXIS; } } // Make sure a team was found if ( iTeam != -1 ) { new players[32], iTotalPlayers, i, iFirstPlayer = -1, bool:bSaveNext = false; get_players( players, iTotalPlayers ); // Loop through and search for the next target for ( i = 0; i < iTotalPlayers; i++ ) { // Make sure they're on the same team if ( iTeam == get_user_team( players[i] ) ) { // This is the next available player if ( bSaveNext ) { iTarget = players[i]; break; } // If this is the previous target, we need to get the next one! if ( players[i] == iLastID ) { bSaveNext = true; } // Save the FIRST player on this team if ( iFirstPlayer == -1 ) { iFirstPlayer = players[i]; } } } // No target was found so return the first one that matches the team (the target could still be -1 if iFirstPlayer wasn't found) if ( iLastID == 0 ) { iTarget = iFirstPlayer; } } } // Otherwise search for a player else { // Initial search is by player name new iPlayer = find_player( "a", szTarget ); // If not found, search by partial match if ( !iPlayer ) { iPlayer = find_player( "bl", szTarget ); if ( iPlayer ) { // Then Multiple clients found if ( iPlayer != find_player( "blj", szTarget ) ) { return -2; } } } // If not found, search by auth id if ( !iPlayer ) { iPlayer = find_player( "c" , szTarget ); } // If not found, search by user id if ( !iPlayer ) { // Make sure we have a user id if ( szTarget[0] == '#' && szTarget[1] ) { iPlayer = find_player( "k", str_to_num( szTarget[1] ) ) } } // Yay we have a match!!! if ( iPlayer && iLastID != iPlayer ) { iTarget = iPlayer; } } return iTarget; } ADMIN_NoTargetFound( id, szTarget[], bool:bMulti ) { // Multiple clients found if ( bMulti ) { ADMIN_Print( id, "%s There is more than one client matching '%s'", g_MODclient, szTarget ); } else { ADMIN_Print( id, "%s Unable to find target(s) '%s'", g_MODclient, szTarget ); } // List what the available targets are if ( g_MOD == GAME_CSTRIKE || g_MOD == GAME_CZERO ) { ADMIN_Print( id, "%s Available targets are: @ALL, @CT, @T or the player's name/auth/#id", g_MODclient ); } else if ( g_MOD == GAME_DOD ) { ADMIN_Print( id, "%s Available targets are: @ALL, @ALLIES, @AXIS or the player's name/auth/#id", g_MODclient ); } } // Function will print to server console or client console based on the ID number ADMIN_Print( id, text[], {Float,_}:...) { // format the text as needed new szFormattedText[128]; format_args( szFormattedText, 127, 1 ); if ( id == 0 ) { server_print( szFormattedText ); } else { client_print( id, print_console, szFormattedText ); } // Gets rid of compiler warning if ( text[0] == 0 ) { return; } } // Adapted from war3x's log file (I was lazy) ADMIN_Log( id, szCommand[], {Float,_}:... ) { new szLogFile[128]; get_configsdir( szLogFile, 127 ); formatex( szLogFile, 127, "%s/war3ft/wc3_admin.log", szLogFile ); new szFormattedText[128]; format_args( szFormattedText, 127, 2 ); if ( !file_exists( szLogFile ) ) { write_file( szLogFile, "WC3 : Frozen Throne", -1 ); write_file( szLogFile, "Logging of admin commands", -1 ); write_file( szLogFile, " ", -1 ); } new szAdminName[32], szSteamID[32]; if ( id > 0 ) { get_user_name( id, szAdminName, 31 ); get_user_authid( id, szSteamID, 31 ); } else { copy( szAdminName, 31, "SERVER" ); copy( szSteamID, 31, "SERVER" ); } new szCurrentTime[32]; get_time( "%m.%d.%Y %H:%M:%S", szCurrentTime, 31 ); new szLogEntry[256]; formatex( szLogEntry, 255, "[%s] %s (%s) used command: '%s %s'", szCurrentTime, szAdminName, szSteamID, szCommand, szFormattedText ); write_file( szLogFile, szLogEntry, -1 ); // Gets rid of compiler warning if ( szCommand[0] == 0 ) { return; } }
-
Noteikti staaava SaveXP by: Steam ID
-
Jautajums prieks shine, un skriptieriem amxx. ka lai es pievienoju pie originala miscstats.sma saundus vairak? piem tur ir tada rindina. if (g_firstBlood) { g_firstBlood = 0 if (FirstBloodSound) play_sound("misc/imp/firstblood_imp") } un taada new g_Sounds[7][] = { "multikill_imp", un sada if (HeadShotKillSound) { client_cmd(killer, "spk misc/imp/headshot_imp") client_cmd(victim, "spk misc/imp/headshot_imp") } } Es gribu uztaisit lai nevis viena skana skan, bet piem 3 dazadas? vienreiz taada, nakamreiz kad nosit un noskan jau biski savadaka intonacija sai muzikai, skanas .wav failos sataisiitas ir, bet nezinu ka salikt skripta lai ir vairakas, meginaju taa nesanaca.. tikai pie prepare sanaca. if (g_firstBlood) { g_firstBlood = 0 if (FirstBloodSound) { new num = random_num(1,3) switch(num) { case 1:play_sound("misc/imp/season_3_firstblood1") case 2:play_sound("misc/imp/season_3_firstblood2") case 3:play_sound("misc/imp/season_3_firstblood3") } } if (HeadShotKillSound) { new num = random_num(1,3) switch(num) { case 1:play_sound("misc/imp/season_3_headshot1") case 2:play_sound("misc/imp/season_3_headshot2") case 3:play_sound("misc/imp/season_3_headshot3") } }
-
Un kaa tad izskatiisies??? sadi? // Mask of Death if ( ITEM_Has( iAttacker, ITEM_MASK ) > ITEM_NONE && p_data_b[iAttacker][PB_ISCONNECTED]) { new iHealth = get_user_health( iAttacker ); new iBonusHealth = floatround( float( iDamage ) * get_pcvar_float( CVAR_wc3_mask ) ); new iVampiricBonus = p_data_b[iAttacker][PB_HEXED] ? 0 : SM_GetSkillLevel( iAttacker, SKILL_VAMPIRICAURA ); // Then the user already gets a bonus, lets lower the total amount the user is going to get if ( iVampiricBonus > 0 ) { iBonusHealth /= iVampiricBonus; } // Give them bonus else { set_user_health( iAttacker, iHealth + iBonusHealth ); } SHARED_Glow( iAttacker, 0, iBonusHealth, 0, 0 ); Create_ScreenFade( iAttacker, (1<<10), (1<<10), (1<<12), 0, 255, 0, g_GlowLevel[iAttacker][1] ); }
-
To es sapratu, un zinu. Ka taa rada, bet lieta ir tada ka paliek 100 hp tieshi, 100. nevis taka tas gljuks to es zinaju. Gribu uztaisit lai mask of death regeno hp tik cik ir, piem tas wardena skills un preparete +80 ta lai vinam regeno vissus 780.
-
// Mask of Death if ( ITEM_Has( iAttacker, ITEM_MASK ) > ITEM_NONE && p_data_b[iAttacker][PB_ISCONNECTED]) { new iHealth = get_user_health( iAttacker ); new iBonusHealth = floatround( float( iDamage ) * get_pcvar_float( CVAR_wc3_mask ) ); new iVampiricBonus = p_data_b[iAttacker][PB_HEXED] ? 0 : SM_GetSkillLevel( iAttacker, SKILL_VAMPIRICAURA ); // Then the user already gets a bonus, lets lower the total amount the user is going to get if ( iVampiricBonus > 0 ) { iBonusHealth /= iVampiricBonus; } // User needs to be set to max health if ( iHealth + iBonusHealth > get_user_maxhealth( iAttacker ) ) { set_user_health( iAttacker, get_user_maxhealth( iAttacker ) ); } // Give them bonus else { set_user_health( iAttacker, iHealth + iBonusHealth ); } SHARED_Glow( iAttacker, 0, iBonusHealth, 0, 0 ); Create_ScreenFade( iAttacker, (1<<10), (1<<10), (1<<12), 0, 255, 0, g_GlowLevel[iAttacker][1] ); } Gribu pafixot tadu lietu , ka. kad juzoju wardenam ultimate vinam daudz hp rodas, un kad iesauj kadam tad man paliek 100. no visiem piem: 700. varetu palidzet fix to
-
;;; ; To enable a module, remove the semi-colon (;) in front of its name. ; If it's not here, simply add it its name, one per line. ; You don't need to write the _amxx part or the file extension. ;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; SQL Modules usually need to be enabled manually;; ;; You can have any number on at a time. Use ;; ;; amx_sql_type in sql.cfg to specify the default;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; mysql ;sqlite ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Put third party modules below here. ;; ;; You can just list their names, without the _amxx;; ;; or file extension. ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; These modules will be auto-detected and loaded ;; ;; as needed. You do not need to enable them here;; ;; unless you have problems. ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; fun engine fakemeta ;geoip ;sockets ;regex ;nvault ;hamsandwich cstrike csx Shine varetu uzrakstit normali skriptu, jo tas neiet. ko uzrakstiji.
-
shine, a es saliku tavu pluginu, sarakstiju soundus, un kad compileju, errori daudz bija. Tomix1 es jau parmainiju vienalga kados nosaukumos, vins vienalga nedod. :/ pastijos servera logos, raksta taa L 02/20/2009 - 20:58:32: [AMXX] Plugin file open error (plugin "miscstats.amxx") L 02/20/2009 - 21:11:18: [AMXX] Plugin "miscstats.amxx" failed to load: Module/Library Class "xstats" required for plugin. Check modules.ini. Kam ir tads modulis xstats??? man itka nav. :/
-
C:\Program Files\Valve\cstrike\sound\misc\imp te atrodas soundi un rekur skripts http://yy.lv/download.php?f=24526 Problema ir , tada tikko ar draugu parbaudiju, kad vinam nometu soundus viss stradaja, bet taa nedodas noladeties faili. pats serveris nedod noladet. P.S Varbut kads varetu iedot skriptu, kur es vnk taka sarakstu zutaisu visus failus kurus vajag noladet, lai serveris iedod noladet. ;( citadi, baigi maz kam buus soundi.
-
Kapec nestrada es envaru saprast, uzliku amxmodx jaunu, ieliku tikai 3 failus. csstats.amxx statsx.amxx miscstats.amxx un config @ stats.ini man skan skanas, vinam viss radas, bet skaans nav. nedod noladet nevienu soundu, ieliku misc/imp un skripta taa pat ierakstiju, un nedod vienalga ladet ;( mans server.cfg // Use this file to configure your DEDICATED server. // This config file is executed on server start. // disable autoaim sv_aim 0 sv_cheats 0 // disable clients' ability to pause the server pausable 0 // default server name. Change to "Bob's Server", etc. hostname "****" // default cvars to server mp_timelimit 40 mp_chattime 2 mp_freeztime 3 mp_roundtime 5 mp_startmoney 1000 mp_forcechasecam 2 bz_range 0 // maximum client movement speed sv_maxspeed 320 //Sound quality sv_voicequality 20 //Downloadurl CVARS sv_downloadurl "http://****/files/cstrike/" sv_allowdownload 1
-
Jaa ir, lab meginashu no sakuma pa jaunam vissu likt, un pa vienam pluginam. pa jaunam uzlikshu amxx. Kuru labak likt? jaunako 1.8.1 vai vecakU?
-
Nu tak prikols tads, ka es noladeju originalas skanas, un miscstats.amxx Kas ir bijusas uz citiem serveriem taka naken.lv pick.lv nu visi normalie serveri kur ir parastie soundi ar multikil.. Bet serveris nedod , pats kad ieliku soundus sev es dzirdu bet citi ne, bet kad eju serveri man pasam kaut serveris stav, eju serveri rakstas console ka nevar Error: server failed to transmit fil
-
uzlkiky originalo miscstats.amxx ieliku misc mape failus kaa tur nosaukts un vienalga nekaa nav!
-
Netieku gala, ar soundiem, es vinus zutaisiju es dzirdu, bet citi nee :/ un viniem tie soundi nedodas noladeties ari. vieta ir ielikts pareizi viss ir, bet neskan
-
Kads Skriptieris Varetu Palidzet?
JAKuT replied to JAKuT's topic in Servera konfigurācija, plugini, etc...
sapratu kas par vainu, bet ka sataisit nezinu, man pat nelasa configs/stats.ini failu, nevaru ne /rank /top15 /me /hp. neka nevar... kas par vainu vara buut? P.S Nezinu kas tas ir, bet man rakstas kad pieeju bumbu uzliekui kad izmet, kad defuse, viss iet.. tapat prepare to battle. radas, fight tas ari. bet nu skanas nav, rank nav top15 ari. P.S kads palides? searh atrast nevareju -
Kads Skriptieris Varetu Palidzet?
JAKuT replied to JAKuT's topic in Servera konfigurācija, plugini, etc...
meginaju, ielikt skanas misc mape, un uztaisit ka agrak bija, neka nestrada. varbut meginat ielikt serveri ar visiem failiem c:/program files/valve nu tiesi kur pats cs? nevis tikai serveris? caur galveno mapi cs, sreveri likt? -
Kads Skriptieris Varetu Palidzet?
JAKuT replied to JAKuT's topic in Servera konfigurācija, plugini, etc...
Vienalga, nestrada. nedod nemaz noladet un tads errors, meginashu vel dazhus meginajumus, uzrakstishu vai ies vai ne