Addon Zombie CSO MOD [Backup FTP New] [by cTm] [Linux]

Descarcari de addons-uri si discutii despre acestea.

Moderators: Moderatori ajutatori, Moderatori, Echipa eXtreamCS.com

User avatar
AMBosS
Membru, skill 0
Membru, skill 0
Posts: 64
Joined: 10 Dec 2011, 23:25
Detinator Steam: Da
CS Status: Citesc forumul eXtreamCS.com...!
Has thanked: 1 time
Contact:

13 Mar 2016, 02:36

cine stie care este pluginu de arata cutitul hammer la vip tinut in doua maini pe umar va rog sa-mi spuneti si mie , am incercat si cu p_model si degeaba imi arata vechiul hamer tinut intro mana, eu vreau sa stiu care este pluginul de tine hamerul ca in imagine http://uploadimage.ro/1PuC/Untitled.png
RoyalServer
User avatar
iNdio
Membru, skill +4
Membru, skill +4
Posts: 1512
Joined: 28 Jan 2015, 17:42
Detinator Steam: Da
SteamID: iNdioPGL
Reputatie: Fost Membru Club eXtreamCS (6 luni)
Castigator Membru Club eXtream @ Ganduri de sub dus (25 OCT - 25 FEB)
Fond eXtream: 0
Been thanked: 3 times

13 Mar 2016, 03:10

plugin | Afiseaza codul
[code]
#include <amxmodx>
#include <fakemeta>
#include <hamsandwich>
#include <zombieplague>
#include <xs>

#define NAME        "ZP Extra: CSO HAMMER"
#define VERSION        "1.0"
#define AUTHOR        "Zombie-Mod.ru Knife maker"


#define KNIFE_NAME    "[Knife] \rHammer"
#define KNIFE_COST    3

#define KNIFE_GRAVITY    1.15
#define KNIFE_SPEED    230.0
#define SEC_DMG        20.0
#define PRIM_DMG    40.0
#define SEC_HEAD_DMG    40.0
#define PRIM_HEAD_DMG    80.0
#define    KNIFE_KNOCK    8
#define BLOOD        3
#define ADMIN        "0"

static const v_knife[] = "models/knife/v_hammer.mdl"
static const p_knife[] = "models/knife/p_hammer.mdl"

static const SoundList[][] =
{
    "hammer/hammer_deploy1.wav",    // 0
    "hammer/hammer_hwall.wav",    // 1
    "hammer/hammer_slash1.wav",    // 2
    "hammer/hammer_stab.wav",    // 3
    "hammer/hammer1.wav",    // 4
    "hammer/hammer2.wav"    // 5
}

static const Blood[][] =
{
    "sprites/blood.spr",
    "sprites/bloodspray.spr"
}
static g_Blood[sizeof Blood]
static g_Item_Knife
static bool:Knife[33]

public plugin_init()
{
    register_plugin(NAME, VERSION, AUTHOR)
    
    g_Item_Knife = zp_register_extra_item(KNIFE_NAME, KNIFE_COST, ZP_TEAM_HUMAN)
    
    register_event("CurWeapon", "ChangeModel", "be", "1=1")
    RegisterHam(Ham_TakeDamage, "player", "TakeDamage_Pre", 0)
    RegisterHam(Ham_TakeDamage, "player", "TakeDamage_Post", 1)
    RegisterHam(Ham_Player_PreThink, "player", "PreThink")
    register_forward(FM_EmitSound, "KnifeSound")
}
public zp_user_infected_post(id) Knife[id] = false
public zp_extra_item_selected(id, itemid)
{
    if(itemid == g_Item_Knife)
    {    if(Knife[id]) return ZP_PLUGIN_HANDLED
        new num = str_to_num(ADMIN)
        if(num)
        {
            if(!is_user_admin(id))
            return ZP_PLUGIN_HANDLED
        }
        engclient_cmd(id, "weapon_knife")
        Knife[id] = true
        change(id)
    }
    return PLUGIN_CONTINUE
}

public ChangeModel(id)
{
    if(!is_user_alive(id) || zp_get_user_zombie(id))
        return
        
    static weaponid
    weaponid = read_data(2)
    
    if(!Knife[id] || weaponid != CSW_KNIFE)
        return
        
    change(id)
}

public KnifeSound(id, channel, sample[], Float:volume, Float:attn, flags, pitch)
{
    if(!equal(sample, "weapons/knife_", 14) || !Knife[id])
        return FMRES_IGNORED
            
    if(equal(sample[8], "knife_hitwall", 13))
        PlaySound(id, 1)    
    else
    if(equal(sample[8], "knife_hit", 9))
        switch(random(2))
        {
            case 0:PlaySound(id, 4)
            case 1:PlaySound(id, 5)
        }        
    if(equal(sample[8], "knife_slash", 11)) PlaySound(id, 2)
    if(equal(sample[8], "knife_stab", 10)) PlaySound(id, 3)
    if(equal(sample[8], "knife_deploy", 12)) PlaySound(id, 0)
    return FMRES_SUPERCEDE
}

public TakeDamage_Pre(victim, inflictor, attacker, Float:damage, damagetype)
{
    if(!is_user_alive(attacker))
    return HAM_IGNORED
        
    if(!Knife[attacker] || get_user_weapon(attacker) != CSW_KNIFE)
     return HAM_IGNORED
    
    new hit, target
    get_user_aiming(attacker, target, hit)

    new bool:head = (hit == HIT_HEAD)
    new Float:mult_dmg = 1.0
    if(pev(attacker, pev_button, IN_ATTACK))
        mult_dmg = head ? PRIM_HEAD_DMG : PRIM_DMG
    else
        mult_dmg = head ? SEC_HEAD_DMG : SEC_DMG
    SetHamParamFloat(4, damage * mult_dmg)
    return HAM_HANDLED
}

public TakeDamage_Post(victim, inflictor, attacker, Float:damage, damagetype)
{
    if(!is_user_alive(attacker) || !is_user_alive(victim)) 
    return HAM_IGNORED
        
    if(!Knife[attacker] || get_user_weapon(attacker) != CSW_KNIFE)
     return HAM_IGNORED
        
    new Float:Origin[3], Float:Origin2[3], Float:Velocity[3]
    pev(attacker, pev_origin, Origin)
    pev(victim, pev_origin, Origin2)
    xs_vec_sub(Origin2, Origin, Velocity)
    xs_vec_normalize(Velocity, Velocity)
    xs_vec_mul_scalar(Velocity, (KNIFE_KNOCK * 100.0), Velocity)
    if(Velocity[2] <= 100.0)
        Velocity[2] = random_float(150.0, 250.0)
    message_begin(MSG_BROADCAST, SVC_TEMPENTITY);
    write_byte(TE_BLOODSPRITE);
    engfunc(EngFunc_WriteCoord, Origin2[0])
    engfunc(EngFunc_WriteCoord, Origin2[1])
    engfunc(EngFunc_WriteCoord, Origin2[2])
    write_short(g_Blood[0])
    write_short(g_Blood[1])
    write_byte(77)
    write_byte(BLOOD)
    message_end()
    set_pev(victim, pev_velocity, Velocity)
    return HAM_HANDLED
}

public PreThink(id)
{
    if(!is_user_alive(id)) return HAM_IGNORED
    if(!Knife[id]) return HAM_IGNORED
    if(get_user_weapon(id) != CSW_KNIFE) 
    {
        set_pev(id, pev_gravity, get_cvar_float("zp_human_gravity"))
        set_pev(id, pev_maxspeed, get_cvar_float("zp_human_speed"))
        return HAM_IGNORED
    }
    set_pev(id, pev_gravity, KNIFE_GRAVITY)
    set_pev(id, pev_maxspeed, KNIFE_SPEED)
    return HAM_HANDLED
}

public plugin_precache()
{
    precache_model(v_knife)
    precache_model(p_knife)
    
    static i
    for(i = 0; i <= charsmax(SoundList); i++)
        precache_sound(SoundList)
        
    for(i = 0; i <= charsmax(Blood); i++)
        g_Blood = precache_model(Blood)
}

change(id)
{
    set_pev(id, pev_viewmodel2, v_knife)
    set_pev(id, pev_weaponmodel2, p_knife)
}

stock PlaySound(Ent, Sound)
    engfunc(EngFunc_EmitSound, Ent, CHAN_WEAPON, SoundList[_:Sound], VOL_NORM, ATTN_NORM, 0, PITCH_NORM)
    
stock is_user_admin(id)
{
    new __flags=get_user_flags(id);
    return (__flags>0 && !(__flags&ADMIN_USER));
}[/code]
.mdl | Afiseaza codul
http://www50.zippyshare.com/v/m7AR9ZfF/file.html

Esti sigur ca il poarta pe umar? Acum am intrat pe acel server si nu am vazut animatia!
Where Cs had no value, amxx, sometimes, had its price...
steam | Afiseaza codul
Image
Image
User avatar
AMBosS
Membru, skill 0
Membru, skill 0
Posts: 64
Joined: 10 Dec 2011, 23:25
Detinator Steam: Da
CS Status: Citesc forumul eXtreamCS.com...!
Has thanked: 1 time
Contact:

15 Mar 2016, 00:14

Frate , l-am incercat dar tot la fel arata , intro mana.... ajuta-ma te rog..
User avatar
KaNNabyS
Membru, skill 0
Membru, skill 0
Posts: 65
Joined: 08 Mar 2012, 22:05
Detinator Steam: Da
CS Status: Loading . . .
Detinator server CS: Cs.WorldGame.ro
SteamID: KaNNabyS1
Location: Paris-France
Contact:

04 Apr 2016, 19:53

cum scoatem reclama din coltul drept sus ?
Caut postatori tutoriale / pluginuri pentru un nou proiect IT
Cunostinte avansate IPB .
User avatar
combocarte112
Membru, skill +1
Membru, skill +1
Posts: 203
Joined: 31 Jan 2016, 09:22
Detinator Steam: Da
Fond eXtream: 0
Contact:

12 Jun 2016, 16:24

Nu merge link-ul. Te rog frumos sa-l pui pe altul.
Dragan015Bre
Membru, skill 0
Membru, skill 0
Posts: 1
Joined: 08 Jul 2015, 06:27
Detinator Steam: Nu
CS Status: Citesc forumul eXtreamCS.com...!
Fond eXtream: 0
Contact:

12 Jun 2016, 23:28

cTm # oNe wrote:Descriere: Fiindca mi-am vandut si al doilea server CS1.6 CSO Mod si am renuntat definitiv la CS 1.6 pentru CS:GO am decis sa postez pentru toata lumea propriul server/addon extras exact cum era in FTP.

Autor: cTm

Descarcare:

UPDATE 03/02/2016


Pluginuri:
Nu am stat sa scriu si sa editez ce face fiecare, fiindca majoriate stiti ce face acel plugin | Afiseaza codul
zp_manage_level.amxx
;sank_sounds.amxx
Krond-Functions.amxx
;zp_donate_fix.amxx
zpnm_gp_donate_ampks.amxx
;zbm_donate_money.amxx debug                         ; Передача денег между игроками ( Меню ).
; Basic
admin.amxx
;admin_sql.amxx
adminslots.amxx		; slot reservation
admincmd.amxx
adminhelp.amxx
adminvote.amxx
adminchat.amxx
admin_allinone.amxx


; Menus
menufront.amxx		; front-end for admin menus
plmenu.amxx		; players menu (kick, ban, client cmds.)
mapsmenu.amxx		; maps menu (vote, changelevel)



; Map related
;nextmap.amxx ; ¦
;mapchooser.amxx ; ¦
deagsmapmanager.amxx
timeleft.amxx ; ¦



; Chat / Messages
antiflood.amxx		; prevent clients from chat-flooding the server



; Configuration
pausecfg.amxx		; allows to pause and unpause some plugins
statscfg.amxx		; allows to manage stats plugins via menu and commands





; Counter-Strike
;statsx.amxx debug		; stats on death or round end (CSX Module required!)

; Securitate Krond



; Enable to use AMX Mod plugins

;zp_sbsp_maker.amxx
;last_maps_time.amxx
playerid.amxx
ultimate_chat_color.amxx
ultimate_chat_tag.amxx
plugins_adminfix.amxx
;ServerTasks.amxx
;D7_name_changer.amxx
;D7_(dis)connect_messages.amxx
amx_mut.amxx
advanced_gag.amxx
ghostchat.amxx
amx_whonew.amxx
amx_toggleimmune.amxx
amx_transfer.amxx
amx_pikav5.amxx
amx_exterminate.amxx
nochangename.amxx
;amx_ejl_searchmaps.amxx
advanced_bans.amxx
;who_ultimate.amxx
;amxmod_compat.amxx	; AMX Mod backwards compatibility layer
;auto_join.amxx
blocker_fire_msg.amxx
Map_Spawns_Editor.amxx
custom_lang_menu.amxx
;anti_floodup.amxx
;zp_addon_death_sprite.amxx
nademodes.amxx
weaponremover.amxx
simple_pingfaker_country.amxx
vip.amxx
;hud_message_manager.amxx
ad_manager.amxx
resetscore.amxx
;xredirect.amxx debug
;simple_redirect_funx.amxx
;Hats_fixed.amxx
;amx_exec.amxx
;krond.org_admin_logs.amxx
;kill_assist.amxx
;vote.amxx
loading_banner.amxx
;auto_gamemenu.amxx
;spawn_editor.amxx
high_ping_kicker.amxx
;steam_slot.amxx
;adv_change_nick.amxx
admin_price.amxx
vip_price.amxx
;statsx_shell.amxx
;map_night_program.amxx
amx_showip.amxx
;log_advanced_0.0.1.amxx
gbsd_v0.5.amxx
;amx_ss.amxx
admin_spec_esp.amxx
;reconnect_features.amxx
;Radio_DiZ.amxx ; Parteneriat

no_crash.amxx                              ; Закрывает дырки в сборке. ( Не выключать ! )
unprecacher.amxx                           ; Прикеш звуков,моделей.
precache_management.amxx                  ; Показывает лимит ресурсов.
precache_weapon_sound.amxx                 ; Добавляет в прикеш звуки оружий на карту zm_gorod_new
vip_.amxx                                  ; Выдает деньги VIP.
ZV_Effect.amxx                             ; Еффект при смерти.
;demorecorde_cso.amxx      
precache_number.amxx
;specbots.amxx
;precache.amxx ;Nu umbla MasterServer
;buy_vip.amxx
;snowing-sprites.amxx
;combo_sprtes.amxx
;scoreboard.amxx
;3dRank.amxx
buy_levels.amxx
;cs_ham_bots_api.amxx
;colorchat.amxx
;z_out_hud_advertisments.amxx
;RegisterSystem.amxx
kgbbots.amxx
;SpecialGeoipAnnounce.amxx
;SpecialGeoip.amxx
reclama_hud_defilant.amxx
;advanced_win_msgs.amxx
;sprites_on_hud.amxx
D7_name_changer.amxx
ScoreBoardTitle.amxx
;level_inchat.amxx
sky.amxx

zombie_plague_mod.amxx debug                ; Главный мод сервера.

; Дополнение к серверу ( Боссы ).
;zp_alienboss.amxx debug                     ; NPS босс Alien.
;zp_oberon_boss.amxx debug                   ; NPS босс Oberon.
;zp_voteboss.amxx debug                      ; Голосование для двух боссов.


; Орудия сервера.
;zp_wpn_at4cs.amxx debug                     ; Базука AT4-CS.
zp_wpn_grenade_damage.amxx debug                    ; Взрывная граната.
zp_wpn_automate_pack.amxx debug                    ; Пак автоматов.
zp_extra_item_cartblue.amxx                        ; Автомат Cart Blue.
zp_wpn_cartred.amxx debug                           ; Автомат Cart Red.
;zp_wpn_f2000.amxx debug                             ; Автомат F2000.
zp_wpn_infinity.amxx debug                          ; Пистолеты Dual infinity.
zp_wpn_m60e4.amxx debug                             ; Пулемет м60е4.
zp_wpn_m79.amxx debug                               ; Гранатамет М79.
zp_wpn_m134.amxx debug                              ; Пулемет м134.
zp_wpn_mashineguns_pack.amxx debug                  ; Пак пулеметов.
zp_wpn_mp7a1.amxx debug                             ; Автомат mp7a1.
zp_wpn_qbar.amxx debug                              ; Дробовик Q-Bar.
zp_wpn_salamander.amxx debug                        ; Огнемет Salamander.
zp_wpn_scar.amxx debug                              ; Автомат Scar.
zp_wpn_shoutguns_pack.amxx debug                  ; Пак дробовиков.
zp_wpn_skull1.amxx debug                            ; Пистолет Skull-1.
zp_wpn_skull3.amxx debug                            ; Автомат Skull-3.
zp_wpn_snipers_pack.amxx debug                      ; Пак снайперок.
zp_wpn_svdex.amxx debug                     ; Виновтка SVD-EX.
zp_wpn_wa2000.amxx debug                            ; Винтовка wa2000.
;zp_wpn_xm8.amxx debug                               ; Автомат xm-8.
zp_wpn_spas12ex.amxx debug                          ; Дробовик Spas12-EX Deluxe.
;zp_extra_compound_bow.amxx

; Zombie классы: 
zp_classic.amxx debug                               ; Классический зомби ( Classic Zombie )
zp_speed.amxx debug                                 ; Быстрая ( Speed Zombie )
zp_class_healer.amxx debug                          ; Лекарь ( Healer Zombie ) 
zp_zcls_Heavy1.amxx debug                           ; Жирный зомби ( Heavy Zombie )
zp_zclass_siren.amxx debug                          ; Крикун ( Siren Zombie )
zp_zcls_hunter.amxx debug                           ; Хищник ( Hunter Zombie )
1zp_zclass_energy_ball.amxx debug                   ; Тесла зомби ( Tesla Zombie )
zp_zcls_deimos.amxx debug                           ; Босс ( Boss )
zp_claw_sprites.amxx debug     
zp_extra_snark.amxx debug                     ; Ставит спрайт лап для всех классов.

; Дополнения и т.д.
zp_addon.amxx debug                                 ; Отсчет до первого зомби,броня и т.д.
zp_JumpBomb.amxx debug                      ; Граната Jump.
zp_extra_conc.amxx debug                            ; Граната Шок.
zp_extra_health.amxx debug                          ; Покупка жизней.
zp_extra_stealth_new.amxx debug                     ; Покупка невидимости.
zp_extra_knife_blink.amxx debug                     ; Покупка блинка.
zp_extra_nemesis.amxx debug                         ; Покупка Босса ( Boss )
zp_extra_zspawn.amxx debug   
cso_custom_respawn.amxx                       ; Возможность купить возраждение.
;zpnm_extra_respawn.amxx
;ZP_Extra_CustomRespaw.amxx
zp_extra_survivor.amxx debug                        ; Покупка выжившего.
zp_fixer.amxx debug                                 ; Фиксирует баг с Теслой + звук для Buy Menu
zp_buymenu.amxx debug debug                              ; Главное меню покупок ( Buy Menu )
zp_buymenu_all.amxx debug                           ; Показатель + лимит денег.
zp_buymenu_fix_money.amxx debug                     ; Фиксирует баг с деньгами в Buy Menu ( Лимит денег )
zp_bos93_buybr.amxx debug                           ; Блокировка старого Buy Menu.
zm_vip.amxx debug                                   ; VIP на сервере.
zp_vipmenu.amxx debug                               ; VIP меню.
zbm_hero.amxx debug                                 ; Герой CSO.
zp_give_exp.amxx debug                              ; Выдача опыта ( EXP )
zp_team_semiclip.amxx debug  
cso_ip.amxx debug  
zp_fz_translucent.amxx debug  
zp_score.amxx debug  
zpnm_extra_anti_infection_armor.amxx
;cso_like_costumes.amxx debug
zp_cso_xmasgift.amxx
;zp_cso_xmasrandom.amxx
;zpnm_gp_hats.amxx

Demo:
Demo Server | Afiseaza codul
51.255.232.67:27016

Informatii:
  • Addonsu foloseste un sistem de levels/exp, care se salveaza pe nick
  • Bani se salveaza pe nick, limita pentru jucatori normali 150k$ iar pentru VIP/ADMIN 500k$
  • Puteti dezactiva sistemul de level si sa lasati armele free pentru toata lumea.
/*Extra*/

Sper ca il veti folosit, surse nu exista fiindca nu le mai am, dar pluginurile nu contin reclame ascunse sau comenzi, restul reclamelor se dezativeaza din fisierele extra.
I can't download via mega please upload on other site ? :heavy_check_mark:
etcc
Membru, skill 0
Membru, skill 0
Posts: 52
Joined: 17 Feb 2016, 12:16
Detinator Steam: Da
CS Status: I LOVE MOD ZOMBIE :**
Fond eXtream: 0
Contact:

13 Nov 2016, 13:03

Care este pluginul pentru bani, sa se salveze pe nick, si maximu de bani pentru playeri/vipi, stie cineva?
User avatar
MzQ*
Membru eXtream
Membru eXtream
Posts: 3473
Joined: 07 Jul 2014, 18:30
Detinator Steam: Da
Fond eXtream: 0
Has thanked: 10 times
Been thanked: 8 times
Contact:

13 Nov 2016, 13:11

etcc wrote:Care este pluginul pentru bani, sa se salveze pe nick, si maximu de bani pentru playeri/vipi, stie cineva?
zp_buymenu.amxx debug debug ; Главное меню покупок ( Buy Menu )
zp_buymenu_all.amxx debug ; Показатель + лимит денег.
zp_buymenu_fix_money.amxx debug ; Фиксирует баг с деньгами в Buy Menu ( Лимит денег
Image
revolutia
Membru, skill 0
Membru, skill 0
Posts: 76
Joined: 23 Nov 2016, 08:35
Detinator Steam: Nu
CS Status: Citesc forumul eXtreamCS.com...!
Fond eXtream: 0
Contact:

15 Dec 2016, 09:08

Si de unde schimb aia pe sv /vip sau /admin . In config nu e nimic .html? Ce scrie acolo .. ?
User avatar
DaunaTotala
Membru, skill +1
Membru, skill +1
Posts: 152
Joined: 08 Feb 2016, 00:12
Detinator Steam: Da
CS Status: Caut Servere de cs 1.6 spre administrare
Fond eXtream: 0
Contact:

15 Dec 2016, 17:24

ceva poze??
Image
[*]Configurez servere de samp contra cost.
[*][/color]Respecta si vei fi respectat!.
Image
revolutia
Membru, skill 0
Membru, skill 0
Posts: 76
Joined: 23 Nov 2016, 08:35
Detinator Steam: Nu
CS Status: Citesc forumul eXtreamCS.com...!
Fond eXtream: 0
Contact:

16 Dec 2016, 08:49

Nu porneste modul asta..
revolutia
Membru, skill 0
Membru, skill 0
Posts: 76
Joined: 23 Nov 2016, 08:35
Detinator Steam: Nu
CS Status: Citesc forumul eXtreamCS.com...!
Fond eXtream: 0
Contact:

17 Dec 2016, 22:43

Uitati ce imi da in logs, nici mapa nu se mai schimba :
| Afiseaza codul
Dropped XMariusica from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped [RiP PoRtOkAl][A.C.A.B][1914] from server
Reason:  Client sent 'drop'
Dropped Celms from server
Reason:  Kicked
Dropped 17 from server
Reason:  Kicked
L 12/15/2016 - 18:08:07: [mapchooser.amxx] Vote: Voting for the nextmap started
L 12/15/2016 - 18:08:22: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust
L 12/15/2016 - 18:10:35: -------- Mapchange to de_dust --------
[AMXX] Loaded 1 admin from file
Executing AMX Mod X Configuration File 
Scrolling message displaying frequency: 10:00 minutes
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
[DPROTO]: Client 1 - Set AuthIdType 1 [dp_RevEmu2013]; pClient = 0xf371fdfc
Dropped Celms from server
Reason:  Client sent 'drop'
Dropped 17 from server
Reason:  Client sent 'drop'
L 12/15/2016 - 18:28:35: [mapchooser.amxx] Vote: Voting for the nextmap started
L 12/15/2016 - 18:28:50: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_747
L 12/15/2016 - 18:31:02: -------- Mapchange to cs_747 --------
[AMXX] Loaded 1 admin from file
Executing AMX Mod X Configuration File 
Scrolling message displaying frequency: 10:00 minutes
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped ShooK from server
Reason:  Client sent 'drop'
109.98.165.153:34084:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
93.115.98.42:27005:reconnect
[DPROTO]: Client 6 - Set AuthIdType 4 [dproto]; pClient = 0xf37388c0
Dropped Aiurea rau from server
Reason:  Client sent 'drop'
L 12/15/2016 - 18:49:02: [mapchooser.amxx] Vote: Voting for the nextmap started
L 12/15/2016 - 18:49:17: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_storm
L 12/15/2016 - 18:51:30: -------- Mapchange to de_storm --------
[AMXX] Loaded 1 admin from file
Executing AMX Mod X Configuration File 
Scrolling message displaying frequency: 10:00 minutes
Dropped ShooK from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped dmx from server
Reason:  Client sent 'drop'
77.81.182.211:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
dmx : Music Stoped
Dropped dmx from server
Reason:  Client sent 'drop'
L 12/15/2016 - 19:09:30: [mapchooser.amxx] Vote: Voting for the nextmap started
L 12/15/2016 - 19:09:45: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_assault
L 12/15/2016 - 19:11:58: -------- Mapchange to cs_assault --------
[AMXX] Loaded 1 admin from file
Executing AMX Mod X Configuration File 
Scrolling message displaying frequency: 10:00 minutes
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
[DPROTO]: Client 1 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371fdfc
185.116.116.215:27005:reconnect
[DPROTO]: Client 1 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371fdfc
[DPROTO]: Client 2 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf3724cf0
No Swear : waynak ?
!!@@KIMO@@!! : btiew
No Swear : join the second team
!!@@KIMO@@!! : le na2alt ma3o
No Swear : l2no feshil
*DEAD* No Swear : close range gun :)
*DEAD* No Swear : kimo warak
*DEAD* No Swear : haye tole3
!!@@KIMO@@!! : hackeeer
(Counter-Terrorist) ViRuS_LeTaL : n-am
No Swear : dame 1
*DEAD* !!@@KIMO@@!! : sate7
*DEAD* !!@@KIMO@@!! : nizil hostage
!!@@KIMO@@!! : team work
No Swear : yup
!!@@KIMO@@!! : dawre seeko
No Swear : kdw
No Swear : k
*DEAD* !!@@KIMO@@!! : hahahha
No Swear : now ill start playing
!!@@KIMO@@!! : hahha
*DEAD* !!@@KIMO@@!! : sat7o
!!@@KIMO@@!! : nice 1
*DEAD* No Swear : lagggg
No Swear : but nice one
92.86.121.189:27005:reconnect
[DPROTO]: Client 2 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf3724cf0
Dropped !!@@KIMO@@!! from server
Reason:  Timed out
No Swear : dude
No Swear : the other team
No Swear : join terrorists
*DEAD* No Swear : nice shot
No Swear : snipers ?
Dropped No Swear from server
Reason:  Client sent 'drop'
Dropped ViRuS_LeTaL from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [Native]; pClient = 0xf371af08
etcc-ulwq : timeleft
changelevel failed: 'cs_office' not found on server.
Dropped etcc-ulwq from server
Reason:  Client sent 'drop'
188.212.133.235:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [Native]; pClient = 0xf371af08
Dropped etcc-ulwq from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped -TKD- MISTER from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [Native]; pClient = 0xf371af08
Dropped dirtyaim from server
Reason:  Client sent 'drop'
80.97.203.238:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [Native]; pClient = 0xf371af08
Dropped dirtyaim from server
Reason:  Client sent 'drop'
80.97.203.238:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [Native]; pClient = 0xf371af08
Dropped dirtyaim from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
52.213.21.73:11869:reconnect
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped ^FOr3veR^ from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped leossama from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped Player from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Client sent 'drop'
SV_ReadClientMessage: badread
52.213.21.73:11872:reconnect
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
52.213.21.73:11872:reconnect
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Client sent 'drop'
SV_ReadClientMessage: badread
52.213.21.73:11872:reconnect
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [Native]; pClient = 0xf371af08
Dropped etcc-ulwq from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
52.213.21.73:11875:reconnect
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
52.213.21.73:11875:reconnect
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
52.213.21.73:11875:reconnect
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped cosminbalan0022 from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped Gabryel from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped sss from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Warning:  Unable to open maps/cs_assault.bsp for transfer
Dropped Tarzy from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
52.213.21.73:11881:reconnect
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped Roman from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped KENT from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped Int3rne7 from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped MIKE from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped Int3rne7 from server
Reason:  Client sent 'drop'
92.85.140.18:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped Int3rne7 from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped Ser8an from server
Reason:  Timed out
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped Old*Kronos from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
[DPROTO]: Client 1 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371fdfc
Dropped -x3NoM^GoDofHell from server
Reason:  Client sent 'drop'
92.81.217.218:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped KENT from server
Reason:  Client sent 'drop'
*DEAD* -x3NoM^GoDofHell : Sall
*DEAD* -x3NoM^GoDofHell : KENT?
*DEAD* -x3NoM^GoDofHell : KENT??
*DEAD* -x3NoM^GoDofHell : /who
*DEAD* -x3NoM^GoDofHell : /admin
*DEAD* -x3NoM^GoDofHell : /admins
Dropped -x3NoM^GoDofHell from server
Reason:  Client sent 'drop'
92.81.217.218:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Info string length exceeded
Dropped -x3NoM^GoDofHell from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped RCPlayer-XTCS from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped Im Back <3 from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped Furien.DObs.RO from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Warning:  Unable to open maps/cs_assault.bsp for transfer
Dropped Tw!light from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped Ana from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
[DPROTO]: Client 1 - Set AuthIdType 4 [dproto]; pClient = 0xf371fdfc
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
Dropped WArRiOOr 06 from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped <Warrior> Player from server
Reason:  Client sent 'drop'
105.155.68.204:58770:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped <Warrior> Player from server
Reason:  Client sent 'drop'
52.213.21.73:11878:reconnect
[DPROTO]: Client 1 - Set AuthIdType 4 [dproto]; pClient = 0xf371fdfc
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped PoLaT ##  :) :) from server
Reason:  Bad file Server is enforcing file consistency for models/player/terror/terror.mdl

52.213.21.73:11878:reconnect
[DPROTO]: Client 1 - Set AuthIdType 4 [dproto]; pClient = 0xf371fdfc
Dropped SERVERBOOST.ML from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
[DPROTO]: Client 1 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371fdfc
[DPROTO]: Client 2 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf3724cf0
Dropped MRTN from server
Reason:  Client sent 'drop'
Dropped Piti from server
Reason:  Client sent 'drop'
Dropped trag 3d vzi hd from server
Reason:  Client sent 'drop'
Bad Rcon from 81.198.12.42:4676:
rcon 806172000  "123" sv_contact "HLXBrute"
Bad rcon_password.
No password set for this server.
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped Ana from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [Native]; pClient = 0xf371af08
Dropped Cr@zYWoLf from server
Reason:  Client sent 'drop'
78.97.25.183:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [Native]; pClient = 0xf371af08
Dropped Cr@zYWoLf from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [Native]; pClient = 0xf371af08
[DPROTO]: Client 1 - Set AuthIdType 1 [Native]; pClient = 0xf371fdfc
[DPROTO]: Client 2 - Set AuthIdType 1 [Native]; pClient = 0xf3724cf0
[DPROTO]: Client 3 - Set AuthIdType 1 [Native]; pClient = 0xf3729be4
Dropped Player from server
Reason:  Client sent 'drop'
31.16.252.134:55427:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [Native]; pClient = 0xf371af08
Dropped (1)Player from server
Reason:  Client sent 'drop'
84.148.143.95:27005:reconnect
[DPROTO]: Client 1 - Set AuthIdType 1 [Native]; pClient = 0xf371fdfc
Dropped itzl0r from server
Reason:  Client sent 'drop'
Dropped (1)Player from server
Reason:  Client sent 'drop'
Dropped Player from server
Reason:  Client sent 'drop'
Dropped Majosi from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
52.213.21.73:11869:reconnect
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
52.213.21.73:11869:reconnect
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
52.213.21.73:11869:reconnect
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML from server
Reason:  Client sent 'drop'
SV_ReadClientMessage: badread
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped Gabryel from server
Reason:  Client sent 'drop'
188.241.239.116:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped Gabryel from server
Reason:  Client sent 'drop'
188.241.239.116:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped Gabryel from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped Furien.DObs.RO from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
[DPROTO]: Client 1 - Set AuthIdType 4 [dproto]; pClient = 0xf371fdfc
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
Dropped TO)(!K from server
Reason:  Timed out
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped Furien.DObs.RO from server
Reason:  Client sent 'drop'
52.213.21.73:11876:reconnect
[DPROTO]: Client 1 - Set AuthIdType 4 [dproto]; pClient = 0xf371fdfc
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
[DPROTO]: Client 1 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371fdfc
*DEAD* -x3NoM^GoDofHell : te-a conectat?
*DEAD* -x3NoM^GoDofHell : esti?
*DEAD* -x3NoM^GoDofHell : CAramea?
*SPEC* C@R@m3L3 : ce?
*DEAD* -x3NoM^GoDofHell : te lasa
*DEAD* -x3NoM^GoDofHell : sa te conectezii?
*SPEC* C@R@m3L3 : nu
*DEAD* -x3NoM^GoDofHell : nu stiu ce are..
*DEAD* -x3NoM^GoDofHell : stai sa caut
*DEAD* -x3NoM^GoDofHell : intri pe unu de furien?
*SPEC* C@R@m3L3 : nea
*DEAD* -x3NoM^GoDofHell : Da-mi tu unul
*SPEC* C@R@m3L3 : stau hai
*SPEC* C@R@m3L3 : Da-mi
*DEAD* -x3NoM^GoDofHell : okey
*DEAD* -x3NoM^GoDofHell : st
*DEAD* -x3NoM^GoDofHell : furien.ultracs.RO
Dropped -x3NoM^GoDofHell from server
Reason:  Client sent 'drop'
Dropped C@R@m3L3 from server
Reason:  Client sent 'drop'
92.81.207.243:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped -x3NoM^GoDofHell from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped <BCS16> Player from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped -x3NoM^GoDofHell from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Warning:  Unable to open maps/cs_assault.bsp for transfer
Dropped Revo-Play from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped SataNa from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped [RG] | Dexiren [S-A] from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped killer from server
Reason:  Timed out
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped NeXuSS from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped vamwur from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped farouk from server
Reason:  Client sent 'drop'
41.104.27.196:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
[DPROTO]: Client 1 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371fdfc
Dropped IANCA[.]ELITEOFGAMES[.]COM [2] from server
Reason:  Client sent 'drop'
41.108.223.181:27005:reconnect
[DPROTO]: Client 1 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371fdfc
(Spectator) IANCA[.]ELITEOFGAMES[.]COM [2] : ,q,chqlish
Dropped IANCA[.]ELITEOFGAMES[.]COM [2] from server
Reason:  Client sent 'drop'
41.104.27.196:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped farouk from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Warning:  Unable to open maps/cs_assault.bsp for transfer
Dropped Revo-Play from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped Furien.DObs.RO from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
52.213.21.73:11870:reconnect
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped <~ *STEAUA* ~> from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [Native]; pClient = 0xf371af08
Dropped Gabriel^.^ from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped Dani from server
Reason:  Client sent 'drop'
91.218.3.62:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped Dani from server
Reason:  Client sent 'drop'
91.218.3.62:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
*DEAD* Dani : /top15
Dropped Dani from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Warning:  Unable to open maps/cs_assault.bsp for transfer
Dropped Alt.nume from server
Reason:  Client sent 'drop'
46.102.21.165:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Warning:  Unable to open maps/cs_assault.bsp for transfer
Dropped Alt.nume from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped NeXuSS from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [Native]; pClient = 0xf371af08
Dropped Gabriel^.^ from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped (Pro)- Gamer from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Warning:  Unable to open maps/cs_assault.bsp for transfer
Dropped Tarzy from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
[DPROTO]: Client 1 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371fdfc
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
Dropped Amx from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped manu from server
Reason:  Client sent 'drop'
92.80.9.235:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped manu from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
52.213.21.73:10358:reconnect
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [Native]; pClient = 0xf371af08
Dropped Gabriel^.^ from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped JohnCena from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped *Palestin___Gaza* from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
*DEAD* asterixq : /zpmenu
*DEAD* asterixq : /zpmenu
*DEAD* asterixq : /zpmenu
Dropped asterixq from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Warning:  Unable to open maps/cs_assault.bsp for transfer
Dropped pREDOXIN from server
Reason:  Client sent 'drop'
93.119.155.195:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped pREDOXIN from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped -TKD- MISTER from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
[DPROTO]: Client 1 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371fdfc
Dropped pREDOXIN from server
Reason:  Client sent 'drop'
93.119.155.195:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped pREDOXIN from server
Reason:  Client sent 'drop'
93.119.155.195:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped pREDOXIN from server
Reason:  Client sent 'drop'
Dropped Jucator-Bun from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped -TKD- MISTER from server
Reason:  Client sent 'drop'
93.119.155.195:1024:reconnect
[DPROTO]: Client 1 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371fdfc
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped pREDOXIN from server
Reason:  Client sent 'drop'
Dropped Jucator-Bun from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [Native]; pClient = 0xf371af08
Dropped Shadow from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped FreeZe from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
[DPROTO]: Client 1 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371fdfc
Dropped TheSuspect x Black YT from server
Reason:  Client sent 'drop'
80.182.142.39:27005:reconnect
[DPROTO]: Client 1 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371fdfc
*SPEC* TheSuspect x Black YT : gg
[DPROTO]: Client 2 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf3724cf0
[DPROTO]: Client 3 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf3729be4
Dropped TheSuspect x Black YT from server
Reason:  Client sent 'drop'
80.182.142.39:27005:reconnect
[DPROTO]: Client 1 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371fdfc
Dropped TheSuspect x Black YT from server
Reason:  Client sent 'drop'
Dropped Ahmad king from server
Reason:  Client sent 'drop'
79.183.35.92:27005:reconnect
[DPROTO]: Client 2 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf3724cf0
[DPROTO]: Client 1 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371fdfc
Dropped 3nan212 from server
Reason:  Client sent 'drop'
Dropped Ahmad king from server
Reason:  Client sent 'drop'
Dropped abu samra from server
Reason:  Client sent 'drop'
82.102.253.17:27607:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped abUsaMI from server
Reason:  Client sent 'drop'
Dropped abu samra from server
Reason:  Timed out
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped |$|-Tiger-VLOG-|$| from server
Reason:  Client sent 'drop'
92.82.97.232:27005:reconnect
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
[DPROTO]: Client 1 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371fdfc
[DPROTO]: Client 2 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf3724cf0
Dropped XXPfoselXX from server
Reason:  Client sent 'drop'
5.14.240.191:27005:reconnect
[DPROTO]: Client 1 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371fdfc
Dropped ShooK from server
Reason:  Client sent 'drop'
109.98.165.218:26377:reconnect
[DPROTO]: Client 2 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf3724cf0
*SPEC* |$|-Tiger-VLOG-|$| : dc nu merge?
*DEAD* XXPfoselXX : cf
*DEAD* XXPfoselXX : cf
*DEAD* XXPfoselXX : coaye
*SPEC* |$|-Tiger-VLOG-|$| : lb
*DEAD* XXPfoselXX : /vote
Dropped ShooK from server
Reason:  Client sent 'drop'
*DEAD* XXPfoselXX : /reset time
Dropped |$|-Tiger-VLOG-|$| from server
Reason:  Client sent 'drop'
Dropped XXPfoselXX from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
*DEAD* Int3rne7 : care e?
Dropped Int3rne7 from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped WhaitDecoMaster*LOVE*VIP@ from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped <Warrior> Player from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped The[ShoT] from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped lambada from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
Dropped milunka fiksni from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
(Spectator) [|]Matute Luis : amx_langmenu
Dropped [|]Matute Luis from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
52.213.21.73:10355:reconnect
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped SERVERBOOST.ML BUY PLAYERS from server
Reason:  Fake client. Connection was in idle state.
[DPROTO]: Client 0 - Set AuthIdType 4 [dproto]; pClient = 0xf371af08
Dropped VenezolanoEnPinta[LW] from server
Reason:  Client sent 'drop'
[DPROTO]: Client 0 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371af08
[DPROTO]: Client 1 - Set AuthIdType 1 [dp_RevEmu]; pClient = 0xf371fdfc
Dropped Rudy from server
Reason:  Timed out
Post Reply

Return to “Addon-uri”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 11 guests