#include <amxmodx>
#include <amxmisc>
#include <codmod>
#include <engine>
#include <hamsandwich>
#include <fakemeta>
#include <cstrike>
#include <fun>
new const nazwa[] = "Samuraj";
new const opis[] = "Posiada 15 zdrowia, 55 kondycji, 25 wytrzymalosci, niewidzianly na nozu, posiada 1x rakieta, Posiada multijump x3, 1/1 z noza (tylko prawy)";
new const bronie = (1<<CSW_HEGRENADE)|(1<<CSW_SMOKEGRENADE)|(1<<CSW_USP)|(1<<CSW_GLOCK18)|(1<<CSW_MP5NAVY)|(1<<CSW_FLASHBANG)|(1<<CSW_DEAGLE);
new const zdrowie = 15;
new const kondycja = 55;
new const inteligencja = 0;
new const wytrzymalosc = 25;
new sprite_blast;
new ilosc_rakiet_gracza[33];
new poprzednia_rakieta_gracza[33];
new skoki[33];
new ostatnio_prawym[33];
new ma_klase[33];
public plugin_init()
{
register_plugin(nazwa, "1.0", "amxx.pl");
cod_register_class(nazwa, opis, bronie, zdrowie, kondycja, inteligencja, wytrzymalosc);
register_event("CurWeapon", "CurWeapon", "be", "1=1")
register_forward(FM_SetModel, "fw_SetModel");
register_event("CurWeapon", "eventKnife_Niewidzialnosc", "be", "1=1");
register_touch("rocket", "*" , "DotykRakiety");
RegisterHam(Ham_Spawn, "player", "fwSpawn_Rakiety", 1);
register_forward(FM_CmdStart, "fwCmdStart_MultiJump");
RegisterHam(Ham_TakeDamage, "player", "fwTakeDamage_JedenCios");
RegisterHam(Ham_Weapon_PrimaryAttack, "weapon_knife", "fwPrimaryAttack_JedenCios");
RegisterHam(Ham_Weapon_SecondaryAttack, "weapon_knife", "fwSecondaryAttack_JedenCios");
}
public plugin_precache()
{
sprite_blast = precache_model("sprites/dexplo.spr");
precache_model("models/rpgrocket.mdl");
}
public client_disconnect(id)
{
new entRakiety = find_ent_by_class(0, "rocket");
while(entRakiety > 0)
{
if(entity_get_edict(entRakiety, EV_ENT_owner) == id)
remove_entity(entRakiety);
entRakiety = find_ent_by_class(entRakiety, "rocket");
}
}
public cod_class_enabled(id)
{
if(!(get_user_flags(id) & ADMIN_LEVEL_G))
{
client_print(id, print_chat, "[Samuraj] Nie masz uprawnien, aby uzywac tej klasy.")
return COD_STOP;
}
ilosc_rakiet_gracza[id] = 1;
give_item(id, "weapon_hegrenade");
give_item(id, "weapon_flashbang");
give_item(id, "weapon_flashbang");
give_item(id, "weapon_smokegrenade");
cs_set_user_nvg(id, 1);
cs_set_user_defuse(id, 1);
ma_klase[id] = true;
return COD_CONTINUE;
}
public cod_class_disabled(id)
{
set_rendering(id,kRenderFxNone, 0, 0, 0, kRenderTransAlpha, 255);
ma_klase[id] = false;
}
public cod_class_skill_used(id)
{
if (!ilosc_rakiet_gracza[id])
{
client_print(id, print_center, "Wykorzystales juz wszystkie rakiety!");
}
else
{
if(poprzednia_rakieta_gracza[id] + 2.0 > get_gametime())
{
client_print(id, print_center, "Rakiet mozesz uzywac co 2 sekundy!");
}
else
{
if (is_user_alive(id))
{
poprzednia_rakieta_gracza[id] = floatround(get_gametime());
ilosc_rakiet_gracza[id]--;
new Float: Origin[3], Float: vAngle[3], Float: Velocity[3];
entity_get_vector(id, EV_VEC_v_angle, vAngle);
entity_get_vector(id, EV_VEC_origin , Origin);
new Ent = create_entity("info_target");
entity_set_string(Ent, EV_SZ_classname, "rocket");
entity_set_model(Ent, "models/rpgrocket.mdl");
vAngle[0] *= -1.0;
entity_set_origin(Ent, Origin);
entity_set_vector(Ent, EV_VEC_angles, vAngle);
entity_set_int(Ent, EV_INT_effects, 2);
entity_set_int(Ent, EV_INT_solid, SOLID_BBOX);
entity_set_int(Ent, EV_INT_movetype, MOVETYPE_FLY);
entity_set_edict(Ent, EV_ENT_owner, id);
VelocityByAim(id, 1000 , Velocity);
entity_set_vector(Ent, EV_VEC_velocity ,Velocity);
}
}
}
}
public eventKnife_Niewidzialnosc(id)
{
if(!ma_klase[id])
return;
if( read_data(2) == CSW_KNIFE )
{
set_rendering(id,kRenderFxNone, 0, 0, 0, kRenderTransAlpha, 15);
}
else
{
set_rendering(id,kRenderFxNone, 0, 0, 0, kRenderTransAlpha, 255);
}
}
public fwSpawn_Rakiety(id)
{
if(is_user_alive(id))
ilosc_rakiet_gracza[id] = 1;
}
public DotykRakiety(ent)
{
if (!is_valid_ent(ent))
return;
new attacker = entity_get_edict(ent, EV_ENT_owner);
new Float:fOrigin[3];
entity_get_vector(ent, EV_VEC_origin, fOrigin);
new iOrigin[3];
for(new i=0;i<3;i++)
iOrigin[i] = floatround(fOrigin[i]);
message_begin(MSG_BROADCAST,SVC_TEMPENTITY, iOrigin);
write_byte(TE_EXPLOSION);
write_coord(iOrigin[0]);
write_coord(iOrigin[1]);
write_coord(iOrigin[2]);
write_short(sprite_blast);
write_byte(32);
write_byte(20);
write_byte(0);
message_end();
new entlist[33];
new numfound = find_sphere_class(ent, "player", 190.0, entlist, 32);
for (new i=0; i < numfound; i++)
{
new pid = entlist[i];
if (!is_user_alive(pid) || get_user_team(attacker) == get_user_team(pid))
continue;
cod_inflict_damage(attacker, pid, 55.0, 0.9, ent, (1<<24));
}
remove_entity(ent);
}
public fwCmdStart_MultiJump(id, uc_handle)
{
if(!is_user_alive(id) || !ma_klase[id])
return FMRES_IGNORED;
new flags = pev(id, pev_flags);
if((get_uc(uc_handle, UC_Buttons) & IN_JUMP) && !(flags & FL_ONGROUND) && !(pev(id, pev_oldbuttons) & IN_JUMP) && skoki[id])
{
skoki[id]--;
new Float:velocity[3];
pev(id, pev_velocity,velocity);
velocity[2] = random_float(265.0,285.0);
set_pev(id, pev_velocity,velocity);
}
else if(flags & FL_ONGROUND)
skoki[id] = 3;
return FMRES_IGNORED;
}
public fwTakeDamage_JedenCios(id, ent, attacker)
{
if(is_user_alive(attacker) && ma_klase[attacker] && get_user_weapon(attacker) == CSW_KNIFE && ostatnio_prawym[id])
{
cs_set_user_armor(id, 0, CS_ARMOR_NONE);
SetHamParamFloat(4, float(get_user_health(id) + 1));
return HAM_HANDLED;
}
return HAM_IGNORED;
}
public fwPrimaryAttack_JedenCios(ent)
{
new id = pev(ent, pev_owner);
ostatnio_prawym[id] = 1;
}
public fwSecondaryAttack_JedenCios(ent)
{
new id = pev(ent, pev_owner);
ostatnio_prawym[id] = 0;
}
public CurWeapon(id)
{
new weapon = read_data(2);
if(ma_klase[id]) //tutaj wstawiamy ma_klase lub ma_perk
{
if(weapon == CSW_KNIFE) //tutaj ustawiamy broń, jakiej model będziemy zmieniać
{
set_pev(id, pev_viewmodel2, "models/COD/v_knife.mdl")
//tu dajemy ścieżkę do nowego modeli v_
set_pev(id, pev_weaponmodel2, "models/COD/v_knife.mdl")
//tu dajemy ścieżkę do nowego modeli p_
}
}
if(ma_klase[id]) //tutaj wstawiamy ma_klase lub ma_perk
{
if(weapon == CSW_MP5NAVY) //tutaj ustawiamy broń, jakiej model będziemy zmieniać
{
set_pev(id, pev_viewmodel2, "models/COD/v_mp5.mdl")
//tu dajemy ścieżkę do nowego modeli v_
set_pev(id, pev_weaponmodel2, "models/COD/p_mp5.mdl")
//tu dajemy ścieżkę do nowego modeli p_
}
}
}
public fw_SetModel(entity, model[])
{
if(!pev_valid(entity))
return FMRES_IGNORED
if(!equali(model, "models/w_KNIFE.mdl") && !equali(model, "models/w_MP5.mdl")) //tutaj wpisujemy ścieżkę do STAREGO modelu w_, czyli tego który chcemy podmienić
return FMRES_IGNORED;
new entityowner = pev(entity, pev_owner);
if(!ma_klase[entityowner]) //tutaj wpisujemy ma_perk lub ma_klase
return FMRES_IGNORED;
engfunc(EngFunc_SetModel, entity, "models/w_KNIFE.mdl");
engfunc(EngFunc_SetModel, entity, "models/w_MP5.mdl");
return FMRES_SUPERCEDE
}
Witamy w Nieoficjalnym polskim support'cie AMX Mod X
Witamy w Nieoficjalnym polskim support'cie AMX Mod X, jak w większości społeczności internetowych musisz się zarejestrować aby móc odpowiadać lub zakładać nowe tematy, ale nie bój się to jest prosty proces w którym wymagamy minimalnych informacji.
|
Guest Message by DevFuse
maq12
Rejestracja: 07.03.2011Aktualnie: Nieaktywny
Poza forum Ostatnio: 24.12.2013 14:43





Statystyki
- Grupa: Użytkownik
- Całość postów: 7
- Odwiedzin: 1 726
- Tytuł: Nowy
- Wiek: 34 lat
- Urodziny: Lipiec 21, 1990
-
Imię
Maciek
-
Płeć
Mężczyzna
-
Lokalizacja
Biała Podlaska
Kontakt
5
Nowy
Narzędzia użytkownika
Znajomi
maq12 nie posiada znajomych
#432792 [ROZWIĄZANE COD NOWY] Zla podmiana modeli
Napisane przez maq12
w 16.07.2012 12:45
Sprawdz to. Ładnie się kompiluje ale nie jestem pewny co do nazw modeli. Sprawdz je jeszcze
#324779 [Pytanie] Mniejsza grawitacja na nozu.
Napisane przez maq12
w 21.11.2011 10:24
#303581 [ROZWIĄZANE] Problem z QTM_Cod Mod 5 errorów
Napisane przez maq12
w 06.10.2011 13:07
Po pierwsze to wogóle zapominasz o klamrach, a po drugie podstawiłeś inną nazwę klasy niż miałeś zadeklarowaną.
Załączone pliki
-
QTM_CodModdd.sma 89,07 KB 29 Ilość pobrań
QTM_CodModdd.amxx
#303221 Problemy przy kompilacji - errory i warningi
Napisane przez maq12
w 05.10.2011 11:11
#222623 Voices Managemen = crash serwera
Napisane przez maq12
w 07.03.2011 12:04
Spoiler
L 03/07/2011 - 09:41:40: Log file started (file "logs/L0307034.log") (game "cstrike") (version "48/1.1.2.6/Stdio/5006")
L 03/07/2011 - 09:41:40: Server cvar "mp_logdetail" = "3"
L 03/07/2011 - 09:41:40: Server cvar "mp_c4timer" = "35"
L 03/07/2011 - 09:41:40: Server cvar "mp_flashlight" = "1"
L 03/07/2011 - 09:41:40: Server cvar "mp_freezetime" = "1"
L 03/07/2011 - 09:41:40: Server cvar "mp_hostagepenalty" = "2"
L 03/07/2011 - 09:41:40: Server cvar "mp_roundtime" = "2"
L 03/07/2011 - 09:41:40: Server cvar "mp_buytime" = "0.15"
L 03/07/2011 - 09:41:40: Server cvar "mp_chattime" = "0"
L 03/07/2011 - 09:41:40: Server cvar "sv_maxspeed" = "320"
L 03/07/2011 - 09:41:40: Server cvar "allow_spectators" = "1"
L 03/07/2011 - 09:41:40: Server cvar "sv_proxies" = "0"
L 03/07/2011 - 09:41:40: Server cvar "sv_aim" = "0"
L 03/07/2011 - 09:41:40: Server cvar "sv_maxrate" = "25000"
L 03/07/2011 - 09:41:40: Server cvar "sv_minrate" = "2500"
L 03/07/2011 - 09:41:40: Server cvar "sv_allowupload" = "0"
L 03/07/2011 - 09:41:40: [DPROTO]: Client 0 - Set AuthIdType 8 [dproto]; pClient = 0xb5aadf08
L 03/07/2011 - 09:41:41: [DPROTO]: Client 1 - Set AuthIdType 8 [dproto]; pClient = 0xb5ab2df0
L 03/07/2011 - 09:41:42: [DPROTO]: Client 2 - Set AuthIdType 1 [Native]; pClient = 0xb5ab7cd8
L 03/07/2011 - 09:41:43: "MaQ<3><STEAM_0:1:33329274><>" STEAM USERID validated
L 03/07/2011 - 09:41:43: "TuX<1><STEAM_ID_LAN><>" entered the game
L 03/07/2011 - 09:41:45: "TuX<1><STEAM_ID_LAN><>" joined team "CT"
L 03/07/2011 - 09:41:46: Server cvar "mp_buytime" = "0.250000"
L 03/07/2011 - 09:41:47: "MaQ<3><STEAM_0:1:33329274><>" entered the game
L 03/07/2011 - 09:41:48: World triggered "Round_Start"
L 03/07/2011 - 09:41:48: "poczatkujacy ;f<2><STEAM_ID_LAN><>" entered the game
L 03/07/2011 - 09:41:49: "MaQ<3><STEAM_0:1:33329274><>" joined team "SPECTATOR"
L 03/07/2011 - 09:41:51: "poczatkujacy ;f<2><STEAM_ID_LAN><>" joined team "TERRORIST"
L 03/07/2011 - 09:50:45: "TuX<1><STEAM_ID_LAN><CT>" attacked "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" with "m4a1" (damage "41") (damage_armor "0") (health "123") (armor "100")
L 03/07/2011 - 09:50:45: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" attacked "TuX<1><STEAM_ID_LAN><CT>" with "mac10" (damage "25") (damage_armor "0") (health "129") (armor "100")
L 03/07/2011 - 09:50:46: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" attacked "TuX<1><STEAM_ID_LAN><CT>" with "mac10" (damage "26") (damage_armor "0") (health "103") (armor "100")
L 03/07/2011 - 09:50:46: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" attacked "TuX<1><STEAM_ID_LAN><CT>" with "mac10" (damage "26") (damage_armor "0") (health "77") (armor "100")
L 03/07/2011 - 09:50:46: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" attacked "TuX<1><STEAM_ID_LAN><CT>" with "mac10" (damage "26") (damage_armor "0") (health "51") (armor "100")
L 03/07/2011 - 09:50:46: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" attacked "TuX<1><STEAM_ID_LAN><CT>" with "mac10" (damage "26") (damage_armor "0") (health "25") (armor "100")
L 03/07/2011 - 09:50:46: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" attacked "TuX<1><STEAM_ID_LAN><CT>" with "mac10" (damage "26") (damage_armor "0") (health "-1") (armor "100")
L 03/07/2011 - 09:50:46: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" killed "TuX<1><STEAM_ID_LAN><CT>" with "mac10"
L 03/07/2011 - 09:50:46: Team "TERRORIST" triggered "Terrorists_Win" (CT "5") (T "8")
L 03/07/2011 - 09:50:46: World triggered "Round_End"
L 03/07/2011 - 09:50:50: "TuX<1><STEAM_ID_LAN><CT>" say "/hp" (dead)
L 03/07/2011 - 09:50:51: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
L 03/07/2011 - 09:50:52: World triggered "Round_Start"
L 03/07/2011 - 09:51:09: "TuX<1><STEAM_ID_LAN><CT>" attacked "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" with "m4a1" (damage "41") (damage_armor "0") (health "123") (armor "100")
L 03/07/2011 - 09:51:12: "TuX<1><STEAM_ID_LAN><CT>" attacked "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" with "m4a1" (damage "25") (damage_armor "0") (health "98") (armor "100")
L 03/07/2011 - 09:51:12: "TuX<1><STEAM_ID_LAN><CT>" attacked "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" with "m4a1" (damage "28") (damage_armor "0") (health "70") (armor "100")
L 03/07/2011 - 09:51:12: "TuX<1><STEAM_ID_LAN><CT>" attacked "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" with "m4a1" (damage "25") (damage_armor "0") (health "45") (armor "100")
L 03/07/2011 - 09:51:13: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" attacked "TuX<1><STEAM_ID_LAN><CT>" with "mac10" (damage "32") (damage_armor "0") (health "122") (armor "100")
L 03/07/2011 - 09:51:13: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" attacked "TuX<1><STEAM_ID_LAN><CT>" with "mac10" (damage "33") (damage_armor "0") (health "89") (armor "100")
L 03/07/2011 - 09:51:13: "TuX<1><STEAM_ID_LAN><CT>" attacked "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" with "m4a1" (damage "138") (damage_armor "0") (health "-93") (armor "100")
L 03/07/2011 - 09:51:13: "TuX<1><STEAM_ID_LAN><CT>" killed "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" with "m4a1"
L 03/07/2011 - 09:51:13: Team "CT" triggered "CTs_Win" (CT "6") (T "8")
L 03/07/2011 - 09:51:13: World triggered "Round_End"
L 03/07/2011 - 09:51:18: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
L 03/07/2011 - 09:51:19: World triggered "Round_Start"
L 03/07/2011 - 09:51:34: [META] ini: Begin re-reading plugins list: /home/s2683/cstrike/addons/metamod/plugins.ini
L 03/07/2011 - 09:51:34: [META] ini: Read plugin config for: dproto_EF
L 03/07/2011 - 09:51:34: [META] ini: Read plugin config for: AMX Mod X
L 03/07/2011 - 09:51:34: [META] ini: Finished reading plugins list: /home/s2683/cstrike/addons/metamod/plugins.ini; Found 2 plugins
L 03/07/2011 - 09:51:34: [META] dll: Updating plugins...
L 03/07/2011 - 09:51:34: [META] dll: Finished updating 10 plugins; kept 2, loaded 0, unloaded 0, reloaded 0, delayed 0
L 03/07/2011 - 09:51:34: "TuX<1><STEAM_ID_LAN><CT>" disconnected
L 03/07/2011 - 09:51:34: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" triggered "Dropped_The_Bomb"
L 03/07/2011 - 09:51:34: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" disconnected
L 03/07/2011 - 09:51:34: World triggered "Round_Draw" (CT "6") (T "8")
L 03/07/2011 - 09:51:34: World triggered "Round_End"
L 03/07/2011 - 09:51:34: "MaQ<4><STEAM_0:1:33329274><SPECTATOR>" disconnected
L 03/07/2011 - 09:51:34: World triggered "Round_Draw" (CT "6") (T "8")
L 03/07/2011 - 09:51:34: World triggered "Round_End"
L 03/07/2011 - 09:51:34: Log file closed
L 03/07/2011 - 09:41:40: Server cvar "mp_logdetail" = "3"
L 03/07/2011 - 09:41:40: Server cvar "mp_c4timer" = "35"
L 03/07/2011 - 09:41:40: Server cvar "mp_flashlight" = "1"
L 03/07/2011 - 09:41:40: Server cvar "mp_freezetime" = "1"
L 03/07/2011 - 09:41:40: Server cvar "mp_hostagepenalty" = "2"
L 03/07/2011 - 09:41:40: Server cvar "mp_roundtime" = "2"
L 03/07/2011 - 09:41:40: Server cvar "mp_buytime" = "0.15"
L 03/07/2011 - 09:41:40: Server cvar "mp_chattime" = "0"
L 03/07/2011 - 09:41:40: Server cvar "sv_maxspeed" = "320"
L 03/07/2011 - 09:41:40: Server cvar "allow_spectators" = "1"
L 03/07/2011 - 09:41:40: Server cvar "sv_proxies" = "0"
L 03/07/2011 - 09:41:40: Server cvar "sv_aim" = "0"
L 03/07/2011 - 09:41:40: Server cvar "sv_maxrate" = "25000"
L 03/07/2011 - 09:41:40: Server cvar "sv_minrate" = "2500"
L 03/07/2011 - 09:41:40: Server cvar "sv_allowupload" = "0"
L 03/07/2011 - 09:41:40: [DPROTO]: Client 0 - Set AuthIdType 8 [dproto]; pClient = 0xb5aadf08
L 03/07/2011 - 09:41:41: [DPROTO]: Client 1 - Set AuthIdType 8 [dproto]; pClient = 0xb5ab2df0
L 03/07/2011 - 09:41:42: [DPROTO]: Client 2 - Set AuthIdType 1 [Native]; pClient = 0xb5ab7cd8
L 03/07/2011 - 09:41:43: "MaQ<3><STEAM_0:1:33329274><>" STEAM USERID validated
L 03/07/2011 - 09:41:43: "TuX<1><STEAM_ID_LAN><>" entered the game
L 03/07/2011 - 09:41:45: "TuX<1><STEAM_ID_LAN><>" joined team "CT"
L 03/07/2011 - 09:41:46: Server cvar "mp_buytime" = "0.250000"
L 03/07/2011 - 09:41:47: "MaQ<3><STEAM_0:1:33329274><>" entered the game
L 03/07/2011 - 09:41:48: World triggered "Round_Start"
L 03/07/2011 - 09:41:48: "poczatkujacy ;f<2><STEAM_ID_LAN><>" entered the game
L 03/07/2011 - 09:41:49: "MaQ<3><STEAM_0:1:33329274><>" joined team "SPECTATOR"
L 03/07/2011 - 09:41:51: "poczatkujacy ;f<2><STEAM_ID_LAN><>" joined team "TERRORIST"
L 03/07/2011 - 09:50:45: "TuX<1><STEAM_ID_LAN><CT>" attacked "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" with "m4a1" (damage "41") (damage_armor "0") (health "123") (armor "100")
L 03/07/2011 - 09:50:45: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" attacked "TuX<1><STEAM_ID_LAN><CT>" with "mac10" (damage "25") (damage_armor "0") (health "129") (armor "100")
L 03/07/2011 - 09:50:46: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" attacked "TuX<1><STEAM_ID_LAN><CT>" with "mac10" (damage "26") (damage_armor "0") (health "103") (armor "100")
L 03/07/2011 - 09:50:46: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" attacked "TuX<1><STEAM_ID_LAN><CT>" with "mac10" (damage "26") (damage_armor "0") (health "77") (armor "100")
L 03/07/2011 - 09:50:46: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" attacked "TuX<1><STEAM_ID_LAN><CT>" with "mac10" (damage "26") (damage_armor "0") (health "51") (armor "100")
L 03/07/2011 - 09:50:46: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" attacked "TuX<1><STEAM_ID_LAN><CT>" with "mac10" (damage "26") (damage_armor "0") (health "25") (armor "100")
L 03/07/2011 - 09:50:46: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" attacked "TuX<1><STEAM_ID_LAN><CT>" with "mac10" (damage "26") (damage_armor "0") (health "-1") (armor "100")
L 03/07/2011 - 09:50:46: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" killed "TuX<1><STEAM_ID_LAN><CT>" with "mac10"
L 03/07/2011 - 09:50:46: Team "TERRORIST" triggered "Terrorists_Win" (CT "5") (T "8")
L 03/07/2011 - 09:50:46: World triggered "Round_End"
L 03/07/2011 - 09:50:50: "TuX<1><STEAM_ID_LAN><CT>" say "/hp" (dead)
L 03/07/2011 - 09:50:51: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
L 03/07/2011 - 09:50:52: World triggered "Round_Start"
L 03/07/2011 - 09:51:09: "TuX<1><STEAM_ID_LAN><CT>" attacked "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" with "m4a1" (damage "41") (damage_armor "0") (health "123") (armor "100")
L 03/07/2011 - 09:51:12: "TuX<1><STEAM_ID_LAN><CT>" attacked "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" with "m4a1" (damage "25") (damage_armor "0") (health "98") (armor "100")
L 03/07/2011 - 09:51:12: "TuX<1><STEAM_ID_LAN><CT>" attacked "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" with "m4a1" (damage "28") (damage_armor "0") (health "70") (armor "100")
L 03/07/2011 - 09:51:12: "TuX<1><STEAM_ID_LAN><CT>" attacked "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" with "m4a1" (damage "25") (damage_armor "0") (health "45") (armor "100")
L 03/07/2011 - 09:51:13: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" attacked "TuX<1><STEAM_ID_LAN><CT>" with "mac10" (damage "32") (damage_armor "0") (health "122") (armor "100")
L 03/07/2011 - 09:51:13: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" attacked "TuX<1><STEAM_ID_LAN><CT>" with "mac10" (damage "33") (damage_armor "0") (health "89") (armor "100")
L 03/07/2011 - 09:51:13: "TuX<1><STEAM_ID_LAN><CT>" attacked "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" with "m4a1" (damage "138") (damage_armor "0") (health "-93") (armor "100")
L 03/07/2011 - 09:51:13: "TuX<1><STEAM_ID_LAN><CT>" killed "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" with "m4a1"
L 03/07/2011 - 09:51:13: Team "CT" triggered "CTs_Win" (CT "6") (T "8")
L 03/07/2011 - 09:51:13: World triggered "Round_End"
L 03/07/2011 - 09:51:18: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
L 03/07/2011 - 09:51:19: World triggered "Round_Start"
L 03/07/2011 - 09:51:34: [META] ini: Begin re-reading plugins list: /home/s2683/cstrike/addons/metamod/plugins.ini
L 03/07/2011 - 09:51:34: [META] ini: Read plugin config for: dproto_EF
L 03/07/2011 - 09:51:34: [META] ini: Read plugin config for: AMX Mod X
L 03/07/2011 - 09:51:34: [META] ini: Finished reading plugins list: /home/s2683/cstrike/addons/metamod/plugins.ini; Found 2 plugins
L 03/07/2011 - 09:51:34: [META] dll: Updating plugins...
L 03/07/2011 - 09:51:34: [META] dll: Finished updating 10 plugins; kept 2, loaded 0, unloaded 0, reloaded 0, delayed 0
L 03/07/2011 - 09:51:34: "TuX<1><STEAM_ID_LAN><CT>" disconnected
L 03/07/2011 - 09:51:34: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" triggered "Dropped_The_Bomb"
L 03/07/2011 - 09:51:34: "poczatkujacy ;f<2><STEAM_ID_LAN><TERRORIST>" disconnected
L 03/07/2011 - 09:51:34: World triggered "Round_Draw" (CT "6") (T "8")
L 03/07/2011 - 09:51:34: World triggered "Round_End"
L 03/07/2011 - 09:51:34: "MaQ<4><STEAM_0:1:33329274><SPECTATOR>" disconnected
L 03/07/2011 - 09:51:34: World triggered "Round_Draw" (CT "6") (T "8")
L 03/07/2011 - 09:51:34: World triggered "Round_End"
L 03/07/2011 - 09:51:34: Log file closed
Spoiler
L 03/07/2011 - 09:51:34: Log file started (file "logs/L0307035.log") (game "cstrike") (version "48/1.1.2.6/Stdio/5006")
L 03/07/2011 - 09:51:34: Loading map "de_inferno"
L 03/07/2011 - 09:51:34: Server cvars start
L 03/07/2011 - 09:51:34: Server cvar "_tutor_bomb_viewable_check_interval" = "0.5"
L 03/07/2011 - 09:51:34: Server cvar "_tutor_debug_level" = "0"
L 03/07/2011 - 09:51:34: Server cvar "_tutor_examine_time" = "0.5"
L 03/07/2011 - 09:51:34: Server cvar "_tutor_hint_interval_time" = "10.0"
L 03/07/2011 - 09:51:34: Server cvar "_tutor_look_angle" = "10"
L 03/07/2011 - 09:51:34: Server cvar "_tutor_look_distance" = "200"
L 03/07/2011 - 09:51:34: Server cvar "_tutor_message_character_display_time_coefficient" = "0.07"
L 03/07/2011 - 09:51:34: Server cvar "_tutor_message_minimum_display_time" = "1"
L 03/07/2011 - 09:51:34: Server cvar "_tutor_message_repeats" = "5"
L 03/07/2011 - 09:51:34: Server cvar "_tutor_view_distance" = "1000"
L 03/07/2011 - 09:51:34: Server cvar "aesp_version" = "1.3"
L 03/07/2011 - 09:51:34: Server cvar "allow_spectators" = "1"
L 03/07/2011 - 09:51:34: Server cvar "amx_client_languages" = "1"
L 03/07/2011 - 09:51:34: Server cvar "amx_language" = "pl"
L 03/07/2011 - 09:51:34: Server cvar "amx_nextmap" = "de_dustyaztec"
L 03/07/2011 - 09:51:34: Server cvar "amx_ptb_version" = "1.8b2"
L 03/07/2011 - 09:51:34: Server cvar "amx_timeleft" = "11:13"
L 03/07/2011 - 09:51:34: Server cvar "amxmodx_version" = "1.8.1.3746"
L 03/07/2011 - 09:51:34: Server cvar "coop" = "0"
L 03/07/2011 - 09:51:34: Server cvar "deathmatch" = "1"
L 03/07/2011 - 09:51:34: Server cvar "decalfrequency" = "30"
L 03/07/2011 - 09:51:34: Server cvar "dp_version" = "0.9.87"
L 03/07/2011 - 09:51:34: Server cvar "edgefriction" = "2"
L 03/07/2011 - 09:51:34: Server cvar "hostage_debug" = "0"
L 03/07/2011 - 09:51:34: Server cvar "hostage_stop" = "0"
L 03/07/2011 - 09:51:34: Server cvar "humans_join_team" = "any"
L 03/07/2011 - 09:51:34: Server cvar "map_spawns" = "T(20) CT(20)"
L 03/07/2011 - 09:51:34: Server cvar "max_queries_sec" = "3.0"
L 03/07/2011 - 09:51:34: Server cvar "max_queries_sec_global" = "30"
L 03/07/2011 - 09:51:34: Server cvar "max_queries_window" = "60"
L 03/07/2011 - 09:51:34: Server cvar "metamod_version" = "1.19p32"
L 03/07/2011 - 09:51:34: Server cvar "mp_allowmonsters" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_autokick" = "1"
L 03/07/2011 - 09:51:34: Server cvar "mp_autoteambalance" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_buytime" = "0.250000"
L 03/07/2011 - 09:51:34: Server cvar "mp_c4timer" = "35"
L 03/07/2011 - 09:51:34: Server cvar "mp_chattime" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_consistency" = "1"
L 03/07/2011 - 09:51:34: Server cvar "mp_fadetoblack" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_flashlight" = "1"
L 03/07/2011 - 09:51:34: Server cvar "mp_footsteps" = "1"
L 03/07/2011 - 09:51:34: Server cvar "mp_forcecamera" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_forcechasecam" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_fragsleft" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_freezetime" = "1"
L 03/07/2011 - 09:51:34: Server cvar "mp_friendlyfire" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_ghostfrequency" = "0.1"
L 03/07/2011 - 09:51:34: Server cvar "mp_hostagepenalty" = "2"
L 03/07/2011 - 09:51:34: Server cvar "mp_kickpercent" = "0.66"
L 03/07/2011 - 09:51:34: Server cvar "mp_limitteams" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_logdetail" = "3"
L 03/07/2011 - 09:51:34: Server cvar "mp_logfile" = "1"
L 03/07/2011 - 09:51:34: Server cvar "mp_logmessages" = "1"
L 03/07/2011 - 09:51:34: Server cvar "mp_mapvoteratio" = "0.66"
L 03/07/2011 - 09:51:34: Server cvar "mp_maxrounds" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_mirrordamage" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_playerid" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_roundtime" = "2"
L 03/07/2011 - 09:51:34: Server cvar "mp_startmoney" = "800"
L 03/07/2011 - 09:51:34: Server cvar "mp_timeleft" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_timelimit" = "20"
L 03/07/2011 - 09:51:34: Server cvar "mp_tkpunish" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_windifference" = "1"
L 03/07/2011 - 09:51:34: Server cvar "mp_winlimit" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mute menu" = "1.0"
L 03/07/2011 - 09:51:34: Server cvar "pausable" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_accelerate" = "5"
L 03/07/2011 - 09:51:34: Server cvar "sv_aim" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_airaccelerate" = "10"
L 03/07/2011 - 09:51:34: Server cvar "sv_airmove" = "1"
L 03/07/2011 - 09:51:34: Server cvar "sv_allowupload" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_alltalk" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_bounce" = "1"
L 03/07/2011 - 09:51:34: Server cvar "sv_cheats" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_clienttrace" = "1"
L 03/07/2011 - 09:51:34: Server cvar "sv_clipmode" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_friction" = "4"
L 03/07/2011 - 09:51:34: Server cvar "sv_gravity" = "800"
L 03/07/2011 - 09:51:34: Server cvar "sv_logblocks" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_maxrate" = "25000"
L 03/07/2011 - 09:51:34: Server cvar "sv_maxspeed" = "320"
L 03/07/2011 - 09:51:34: Server cvar "sv_minrate" = "2500"
L 03/07/2011 - 09:51:34: Server cvar "sv_password" = ""
L 03/07/2011 - 09:51:34: Server cvar "sv_proxies" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_region" = "3"
L 03/07/2011 - 09:51:34: Server cvar "sv_restart" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_restartround" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_stepsize" = "18"
L 03/07/2011 - 09:51:34: Server cvar "sv_stopspeed" = "75"
L 03/07/2011 - 09:51:34: Server cvar "sv_uploadmax" = "0.5"
L 03/07/2011 - 09:51:34: Server cvar "sv_voiceenable" = "1"
L 03/07/2011 - 09:51:34: Server cvar "sv_wateraccelerate" = "10"
L 03/07/2011 - 09:51:34: Server cvar "sv_waterfriction" = "1"
L 03/07/2011 - 09:51:34: Server cvar "wup_author" = "ReymonARG"
L 03/07/2011 - 09:51:34: Server cvar "wup_version" = "5.6 Beta"
L 03/07/2011 - 09:51:34: Server cvars end
L 03/07/2011 - 09:51:34: [DPROTO]: Unable to load strings pool from file './cstrike/estrpool/estrpool_main.dat'
L 03/07/2011 - 09:51:34: [DPROTO]: Unable to load strings pool from file './cstrike/estrpool/estrpool_de_inferno.dat'
L 03/07/2011 - 09:51:34: Server cvar "sv_maxspeed" = "900"
L 03/07/2011 - 09:51:34: Server cvar "amx_nextmap" = "de_scud_2k1"
L 03/07/2011 - 09:51:34: Server cvar "sv_minrate" = "20000"
L 03/07/2011 - 09:51:34: Server cvar "sv_maxspeed" = "1600"
L 03/07/2011 - 09:51:34: Server cvar "sv_alltalk" = "1"
L 03/07/2011 - 09:51:34: Started map "de_inferno" (CRC "-1312756001")
L 03/07/2011 - 09:51:36: World triggered "Round_Start"
L 03/07/2011 - 09:51:37: "TuX<1><STEAM_ID_LAN><>" entered the game
L 03/07/2011 - 09:51:39: "MaQ<4><STEAM_0:1:33329274><>" entered the game
L 03/07/2011 - 09:51:39: "TuX<1><STEAM_ID_LAN><>" joined team "TERRORIST"
L 03/07/2011 - 09:51:39: "TuX<1><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
L 03/07/2011 - 09:51:39: "poczatkujacy ;f<2><STEAM_ID_LAN><>" entered the game
L 03/07/2011 - 09:51:40: "MaQ<4><STEAM_0:1:33329274><>" joined team "SPECTATOR"
L 03/07/2011 - 09:51:41: "poczatkujacy ;f<2><STEAM_ID_LAN><>" say "jak wy wbilicie takie lvl ?" (dead)
L 03/07/2011 - 09:51:43: [DPROTO]: Client 3 - Set AuthIdType 8 [dproto]; pClient = 0xb5abcbc0
L 03/07/2011 - 09:51:43: "poczatkujacy ;f<2><STEAM_ID_LAN><>" joined team "CT"
L 03/07/2011 - 09:51:43: World triggered "Game_Commencing"
L 03/07/2011 - 09:51:43: World triggered "Game_Commencing" (CT "0") (T "0")
L 03/07/2011 - 09:51:43: World triggered "Round_End"
L 03/07/2011 - 09:51:46: "TuX<1><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
L 03/07/2011 - 09:51:47: World triggered "Round_Start"
L 03/07/2011 - 09:51:51: "poczatkujacy ;f<2><STEAM_ID_LAN><CT>" say "jak wy wbliliscie takie lvl ?"
L 03/07/2011 - 09:52:07: "TuX<1><STEAM_ID_LAN><TERRORIST>" say "jakie?
"
L 03/07/2011 - 09:52:15: "TuX<1><STEAM_
L 03/07/2011 - 09:51:34: Loading map "de_inferno"
L 03/07/2011 - 09:51:34: Server cvars start
L 03/07/2011 - 09:51:34: Server cvar "_tutor_bomb_viewable_check_interval" = "0.5"
L 03/07/2011 - 09:51:34: Server cvar "_tutor_debug_level" = "0"
L 03/07/2011 - 09:51:34: Server cvar "_tutor_examine_time" = "0.5"
L 03/07/2011 - 09:51:34: Server cvar "_tutor_hint_interval_time" = "10.0"
L 03/07/2011 - 09:51:34: Server cvar "_tutor_look_angle" = "10"
L 03/07/2011 - 09:51:34: Server cvar "_tutor_look_distance" = "200"
L 03/07/2011 - 09:51:34: Server cvar "_tutor_message_character_display_time_coefficient" = "0.07"
L 03/07/2011 - 09:51:34: Server cvar "_tutor_message_minimum_display_time" = "1"
L 03/07/2011 - 09:51:34: Server cvar "_tutor_message_repeats" = "5"
L 03/07/2011 - 09:51:34: Server cvar "_tutor_view_distance" = "1000"
L 03/07/2011 - 09:51:34: Server cvar "aesp_version" = "1.3"
L 03/07/2011 - 09:51:34: Server cvar "allow_spectators" = "1"
L 03/07/2011 - 09:51:34: Server cvar "amx_client_languages" = "1"
L 03/07/2011 - 09:51:34: Server cvar "amx_language" = "pl"
L 03/07/2011 - 09:51:34: Server cvar "amx_nextmap" = "de_dustyaztec"
L 03/07/2011 - 09:51:34: Server cvar "amx_ptb_version" = "1.8b2"
L 03/07/2011 - 09:51:34: Server cvar "amx_timeleft" = "11:13"
L 03/07/2011 - 09:51:34: Server cvar "amxmodx_version" = "1.8.1.3746"
L 03/07/2011 - 09:51:34: Server cvar "coop" = "0"
L 03/07/2011 - 09:51:34: Server cvar "deathmatch" = "1"
L 03/07/2011 - 09:51:34: Server cvar "decalfrequency" = "30"
L 03/07/2011 - 09:51:34: Server cvar "dp_version" = "0.9.87"
L 03/07/2011 - 09:51:34: Server cvar "edgefriction" = "2"
L 03/07/2011 - 09:51:34: Server cvar "hostage_debug" = "0"
L 03/07/2011 - 09:51:34: Server cvar "hostage_stop" = "0"
L 03/07/2011 - 09:51:34: Server cvar "humans_join_team" = "any"
L 03/07/2011 - 09:51:34: Server cvar "map_spawns" = "T(20) CT(20)"
L 03/07/2011 - 09:51:34: Server cvar "max_queries_sec" = "3.0"
L 03/07/2011 - 09:51:34: Server cvar "max_queries_sec_global" = "30"
L 03/07/2011 - 09:51:34: Server cvar "max_queries_window" = "60"
L 03/07/2011 - 09:51:34: Server cvar "metamod_version" = "1.19p32"
L 03/07/2011 - 09:51:34: Server cvar "mp_allowmonsters" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_autokick" = "1"
L 03/07/2011 - 09:51:34: Server cvar "mp_autoteambalance" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_buytime" = "0.250000"
L 03/07/2011 - 09:51:34: Server cvar "mp_c4timer" = "35"
L 03/07/2011 - 09:51:34: Server cvar "mp_chattime" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_consistency" = "1"
L 03/07/2011 - 09:51:34: Server cvar "mp_fadetoblack" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_flashlight" = "1"
L 03/07/2011 - 09:51:34: Server cvar "mp_footsteps" = "1"
L 03/07/2011 - 09:51:34: Server cvar "mp_forcecamera" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_forcechasecam" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_fragsleft" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_freezetime" = "1"
L 03/07/2011 - 09:51:34: Server cvar "mp_friendlyfire" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_ghostfrequency" = "0.1"
L 03/07/2011 - 09:51:34: Server cvar "mp_hostagepenalty" = "2"
L 03/07/2011 - 09:51:34: Server cvar "mp_kickpercent" = "0.66"
L 03/07/2011 - 09:51:34: Server cvar "mp_limitteams" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_logdetail" = "3"
L 03/07/2011 - 09:51:34: Server cvar "mp_logfile" = "1"
L 03/07/2011 - 09:51:34: Server cvar "mp_logmessages" = "1"
L 03/07/2011 - 09:51:34: Server cvar "mp_mapvoteratio" = "0.66"
L 03/07/2011 - 09:51:34: Server cvar "mp_maxrounds" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_mirrordamage" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_playerid" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_roundtime" = "2"
L 03/07/2011 - 09:51:34: Server cvar "mp_startmoney" = "800"
L 03/07/2011 - 09:51:34: Server cvar "mp_timeleft" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_timelimit" = "20"
L 03/07/2011 - 09:51:34: Server cvar "mp_tkpunish" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mp_windifference" = "1"
L 03/07/2011 - 09:51:34: Server cvar "mp_winlimit" = "0"
L 03/07/2011 - 09:51:34: Server cvar "mute menu" = "1.0"
L 03/07/2011 - 09:51:34: Server cvar "pausable" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_accelerate" = "5"
L 03/07/2011 - 09:51:34: Server cvar "sv_aim" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_airaccelerate" = "10"
L 03/07/2011 - 09:51:34: Server cvar "sv_airmove" = "1"
L 03/07/2011 - 09:51:34: Server cvar "sv_allowupload" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_alltalk" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_bounce" = "1"
L 03/07/2011 - 09:51:34: Server cvar "sv_cheats" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_clienttrace" = "1"
L 03/07/2011 - 09:51:34: Server cvar "sv_clipmode" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_friction" = "4"
L 03/07/2011 - 09:51:34: Server cvar "sv_gravity" = "800"
L 03/07/2011 - 09:51:34: Server cvar "sv_logblocks" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_maxrate" = "25000"
L 03/07/2011 - 09:51:34: Server cvar "sv_maxspeed" = "320"
L 03/07/2011 - 09:51:34: Server cvar "sv_minrate" = "2500"
L 03/07/2011 - 09:51:34: Server cvar "sv_password" = ""
L 03/07/2011 - 09:51:34: Server cvar "sv_proxies" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_region" = "3"
L 03/07/2011 - 09:51:34: Server cvar "sv_restart" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_restartround" = "0"
L 03/07/2011 - 09:51:34: Server cvar "sv_stepsize" = "18"
L 03/07/2011 - 09:51:34: Server cvar "sv_stopspeed" = "75"
L 03/07/2011 - 09:51:34: Server cvar "sv_uploadmax" = "0.5"
L 03/07/2011 - 09:51:34: Server cvar "sv_voiceenable" = "1"
L 03/07/2011 - 09:51:34: Server cvar "sv_wateraccelerate" = "10"
L 03/07/2011 - 09:51:34: Server cvar "sv_waterfriction" = "1"
L 03/07/2011 - 09:51:34: Server cvar "wup_author" = "ReymonARG"
L 03/07/2011 - 09:51:34: Server cvar "wup_version" = "5.6 Beta"
L 03/07/2011 - 09:51:34: Server cvars end
L 03/07/2011 - 09:51:34: [DPROTO]: Unable to load strings pool from file './cstrike/estrpool/estrpool_main.dat'
L 03/07/2011 - 09:51:34: [DPROTO]: Unable to load strings pool from file './cstrike/estrpool/estrpool_de_inferno.dat'
L 03/07/2011 - 09:51:34: Server cvar "sv_maxspeed" = "900"
L 03/07/2011 - 09:51:34: Server cvar "amx_nextmap" = "de_scud_2k1"
L 03/07/2011 - 09:51:34: Server cvar "sv_minrate" = "20000"
L 03/07/2011 - 09:51:34: Server cvar "sv_maxspeed" = "1600"
L 03/07/2011 - 09:51:34: Server cvar "sv_alltalk" = "1"
L 03/07/2011 - 09:51:34: Started map "de_inferno" (CRC "-1312756001")
L 03/07/2011 - 09:51:36: World triggered "Round_Start"
L 03/07/2011 - 09:51:37: "TuX<1><STEAM_ID_LAN><>" entered the game
L 03/07/2011 - 09:51:39: "MaQ<4><STEAM_0:1:33329274><>" entered the game
L 03/07/2011 - 09:51:39: "TuX<1><STEAM_ID_LAN><>" joined team "TERRORIST"
L 03/07/2011 - 09:51:39: "TuX<1><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
L 03/07/2011 - 09:51:39: "poczatkujacy ;f<2><STEAM_ID_LAN><>" entered the game
L 03/07/2011 - 09:51:40: "MaQ<4><STEAM_0:1:33329274><>" joined team "SPECTATOR"
L 03/07/2011 - 09:51:41: "poczatkujacy ;f<2><STEAM_ID_LAN><>" say "jak wy wbilicie takie lvl ?" (dead)
L 03/07/2011 - 09:51:43: [DPROTO]: Client 3 - Set AuthIdType 8 [dproto]; pClient = 0xb5abcbc0
L 03/07/2011 - 09:51:43: "poczatkujacy ;f<2><STEAM_ID_LAN><>" joined team "CT"
L 03/07/2011 - 09:51:43: World triggered "Game_Commencing"
L 03/07/2011 - 09:51:43: World triggered "Game_Commencing" (CT "0") (T "0")
L 03/07/2011 - 09:51:43: World triggered "Round_End"
L 03/07/2011 - 09:51:46: "TuX<1><STEAM_ID_LAN><TERRORIST>" triggered "Spawned_With_The_Bomb"
L 03/07/2011 - 09:51:47: World triggered "Round_Start"
L 03/07/2011 - 09:51:51: "poczatkujacy ;f<2><STEAM_ID_LAN><CT>" say "jak wy wbliliscie takie lvl ?"
L 03/07/2011 - 09:52:07: "TuX<1><STEAM_ID_LAN><TERRORIST>" say "jakie?

L 03/07/2011 - 09:52:15: "TuX<1><STEAM_
- AMXX.pl: Support AMX Mod X i SourceMod
- → Przeglądanie profilu: Reputacja: maq12
- Regulamin