Правила форума Гаранты форума
Размещение рекламы AMX-X компилятор

Здравствуйте, гость Вход | Регистрация

Наши новости:

14-дек
24-апр
10-апр
11-апр

Ошибка плагина

Статус пользователя Andris1446
сообщение 4.1.2013, 13:25
Сообщение #1
Стаж: 13 лет

Сообщений: 164
Благодарностей: 4
Полезность: < 0

Консоль на сайте сервера выдает ошибку "Unknown error (plugin "loadingbanner.amxx")"
С чем это может быть связано?
Я уже многое перепробовал, но ничего не выходит...
Может это дело в sma?
Помогите -_-
Прикрепленные файлы:
Прикрепленный файл  loading_banner.sma ( 2,56 килобайт ) Кол-во скачиваний: 6
Перейти в начало страницы         Просмотр профиля    Отправить личное сообщение
   Цитировать сообщение
Статус пользователя Orty_Hart
сообщение 4.1.2013, 13:51
Сообщение #2
Стаж: 14 лет

Сообщений: 1399
Благодарностей: 408
Полезность: 725

Andris1446,
Чтоб вам предоставили помощь, нужно показать лого с debug.
Перейти в начало страницы         Просмотр профиля    Отправить личное сообщение
   + Цитировать сообщение
Статус пользователя Andris1446
сообщение 4.1.2013, 14:00
Сообщение #3
Стаж: 13 лет

Сообщений: 164
Благодарностей: 4
Полезность: < 0

Сейчас посмотрю логи в папке.

Если не сложно, пожалуйста, скажите что это такое... Я не знаю...
И где мне найти это лого с debug?
Перейти в начало страницы         Просмотр профиля    Отправить личное сообщение
   + Цитировать сообщение
Статус пользователя Orty_Hart
сообщение 4.1.2013, 14:22
Сообщение #4
Стаж: 14 лет

Сообщений: 1399
Благодарностей: 408
Полезность: 725

Andris1446,
в plagin.ini найди loadingbanner.amxx
и поставь debug
чтоб было

Код
loadingbanner.amxx debug


потом, когда будет ошибка, скинь лого с папок сюда.
Перейти в начало страницы         Просмотр профиля    Отправить личное сообщение
   + Цитировать сообщение
Статус пользователя Andris1446
сообщение 4.1.2013, 14:23
Сообщение #5
Стаж: 13 лет

Сообщений: 164
Благодарностей: 4
Полезность: < 0

Хорошо спасибо.
Уже делаю!
Перейти в начало страницы         Просмотр профиля    Отправить личное сообщение
   + Цитировать сообщение
Статус пользователя Andris1446
сообщение 4.1.2013, 14:30
Сообщение #6
Стаж: 13 лет

Сообщений: 164
Благодарностей: 4
Полезность: < 0

Ошибку в папке /cstrike/logs он не видит.
Что я сделал?
Поставил loadingbanner.amxx debug
После этого поменял карту.
В логах не было ничего.
После этого я перезагрузил Fille Zilla - опять ничего.
Перезагрузил сервер - опять ничего нет в логах ( /cstrike/logs)
Но в консоли эту ошибку он видит.
Скрытый текст
L 01/04/2013 - 16:27:45: [AMXX] Unknown error (plugin "loadingbanner.amxx")


Отредактировал: Andris1446, - 4.1.2013, 14:30
Перейти в начало страницы         Просмотр профиля    Отправить личное сообщение
   + Цитировать сообщение
Статус пользователя pulse.
сообщение 4.1.2013, 14:39
Сообщение #7
Стаж: 13 лет

Сообщений: 260
Благодарностей: 12
Полезность: < 0

мб сам плагин в plugins.ini не засунул, или он вообще по другому называется? другой причины не мб.

Отредактировал: pulse., - 4.1.2013, 14:39
Перейти в начало страницы         Просмотр профиля    Отправить личное сообщение
   + Цитировать сообщение
Статус пользователя Andris1446
сообщение 4.1.2013, 14:44
Сообщение #8
Стаж: 13 лет

Сообщений: 164
Благодарностей: 4
Полезность: < 0

Оригинальное название плагина loading_banner.amxx.
И с таким же названием в консоле он выдает ошибку.
И он есть в Plugins.ini
Что за ошибка я не знаю, но она есть.

Еще раз дам .sma
Код
/*
    Created by DJ_WEST
    
    Web: http://amx-x.ru
    Русское сообщество по AMX Mod X и SourceMod
    
    Присоединяйтесь к нам. Здесь рождаются новые идеи.
*/

#include <amxmodx>

#define PLUGIN "Loading Game Banner"
#define VERSION "1.3"
#define AUTHOR "DJ_WEST"

#define MAX_SIZE 1012
#define BANNER_FILE "gfx/images/HappeTailsGhost14.tga"
#define TASKID 6892

new const g_Files[][64] =
{
    "resource/LoadingDialog.res",
    "resource/LoadingDialogNoBanner.res",
    "resource/LoadingDialogVAC.res"
}

new g_Text[MAX_SIZE], g_CvarEnabled, g_ChangeDelay[33], bool:g_PlayerConnected[33]

public plugin_init()
{
    register_plugin(PLUGIN, VERSION, AUTHOR)
    register_clcmd("change", "Change_LoadingGame")
    
    g_CvarEnabled    = register_cvar("amx_banner", "1")
    
    if (get_pcvar_num(g_CvarEnabled))
        set_task(0.1, "Read_LoadingGame")
}

public client_connect(id)
    client_cmd(id, "cl_allowdownload 1")

public plugin_precache()
{
    precache_generic("gfx/images/HappeTailsGhost14.tga.tga");
    precache_generic("gfx/images/HappeTailsGhost15.tga.tga");
    precache_generic("gfx/images/HappeTailsGhost16.tga.tga");
    precache_generic("gfx/images/HappeTailsGhost17.tga.tga")
}

public Read_LoadingGame()
{
    new i_File, s_File[128], s_Banner[32], i_Len

    i_Len = strlen(BANNER_FILE)
    get_configsdir(s_File, charsmax(s_File))
    format(s_File, charsmax(s_File), "%s/loading_banner.ini", s_File)
    formatex(s_Banner, i_Len - 4, "%s", BANNER_FILE)
    i_File = fopen(s_File, "r")
    fgets(i_File, g_Text, MAX_SIZE)
    replace(g_Text, charsmax(g_Text), "banner_file", s_Banner)
    fclose(i_File)
}

public client_putinserver(id)
{    
    if (get_pcvar_num(g_CvarEnabled))
    {
        if (is_user_hltv(id) || is_user_bot(id))
            return PLUGIN_HANDLED
            
        g_ChangeDelay[id] = 0
        g_PlayerConnected[id] = true
        set_task(3.0, "Change_LoadingGame", id)
    }
    
    return PLUGIN_HANDLED
}

public Change_LoadingGame(id)
{
    set_task(1.0, "Change_LoadingGame_Delay", id + TASKID, "", 0, "a", 4)
}
    
public Change_LoadingGame_Delay(taskid)
{
    new id, i

    id = taskid - TASKID
    
    if (!g_PlayerConnected[id])
        return PLUGIN_HANDLED
        
    i = g_ChangeDelay[id]
  
    if (i == 3)
    {
        client_cmd(id, "motdfile motd.txt")
        g_ChangeDelay[id] = 0
    }
    else
    {
        client_cmd(id, "motdfile %s", g_Files[i])
        client_cmd(id, "motd_write %s", g_Text)
        
        g_ChangeDelay[id]++
    }
    
    return PLUGIN_HANDLED
}

public client_disconnect(id)
{
    g_PlayerConnected[id] = false
    remove_task(id + TASKID)
}

stock get_configsdir(s_Name[], i_Len)
    return get_localinfo("amxx_configsdir", s_Name, i_Len)
Перейти в начало страницы         Просмотр профиля    Отправить личное сообщение
   + Цитировать сообщение
Статус пользователя Orty_Hart
сообщение 4.1.2013, 15:11
Сообщение #9
Стаж: 14 лет

Сообщений: 1399
Благодарностей: 408
Полезность: 725

Andris1446,
Цитата
Поставил loadingbanner.amxx debug

Цитата
Оригинальное название плагина loading_banner.amxx.


ты видишь разницу?
теперь подумай.
Перейти в начало страницы         Просмотр профиля    Отправить личное сообщение
   + Цитировать сообщение
Статус пользователя Andris1446
сообщение 4.1.2013, 15:16
Сообщение #10
Стаж: 13 лет

Сообщений: 164
Благодарностей: 4
Полезность: < 0

Я полностью удалил плагин и ini файл.
Потом сделал рестарт сервера.
Поставил заного плагин и ini файл уже с названием loading_banner.amxx

Ошибку в консоле он больше не видит, НО
Файлы .tga он на сервер при входе на него всеравно не загружает.
В чем же может быть проблема?
Я уже устал искать...
Перейти в начало страницы         Просмотр профиля    Отправить личное сообщение
   + Цитировать сообщение
Статус пользователя Andris1446
сообщение 4.1.2013, 15:44
Сообщение #11
Стаж: 13 лет

Сообщений: 164
Благодарностей: 4
Полезность: < 0

Чтож мне делать?
Я уже измучился с ним -_-

А он нужен -_-
Помогите -_-
Перейти в начало страницы         Просмотр профиля    Отправить личное сообщение
   + Цитировать сообщение
Статус пользователя Andris1446
сообщение 4.1.2013, 16:18
Сообщение #12
Стаж: 13 лет

Сообщений: 164
Благодарностей: 4
Полезность: < 0

Посмотрел в настройках сервера и там было отключено введение логов -_-
Перейти в начало страницы         Просмотр профиля    Отправить личное сообщение
   + Цитировать сообщение
Статус пользователя Andris1446
сообщение 4.1.2013, 16:25
Сообщение #13
Стаж: 13 лет

Сообщений: 164
Благодарностей: 4
Полезность: < 0

Там 4 файла
1)
Код
L 01/04/2013 - 18:19:29: Log file started (file "logs/L0104000.log") (game "cstrike") (version "48/1.1.2.6/Stdio/5787")
L 01/04/2013 - 18:19:29: Server cvar "sv_maxspeed" = "600"
L 01/04/2013 - 18:19:29: Server cvar "pausable" = "0"
L 01/04/2013 - 18:19:29: Server cvar "sv_aim" = "0"
L 01/04/2013 - 18:19:29: Server cvar "sv_maxrate" = "25000"
L 01/04/2013 - 18:19:29: Server cvar "sv_minrate" = "2500"
L 01/04/2013 - 18:19:29: Server cvar "sv_region" = "3"
L 01/04/2013 - 18:19:29: [META] Metamod v1.19p32  2007/08/12
L 01/04/2013 - 18:19:29: [META] by Will Day
L 01/04/2013 - 18:19:29: [META]    http://www.metamod.org/
L 01/04/2013 - 18:19:29: [META]  Patch: Metamod-P (mm-p) v32
L 01/04/2013 - 18:19:29: [META]  by Jussi Kivilinna
L 01/04/2013 - 18:19:29: [META]     http://metamod-p.sourceforge.net/
L 01/04/2013 - 18:19:29: [META] compiled: Aug 12 2007, 18:57:40 EET (optimized)
L 01/04/2013 - 18:19:29: [META] Recognized game 'cstrike'; using dllfile 'cs_i386.so'
L 01/04/2013 - 18:19:29: [META] Game DLL for 'Counter-Strike' loaded successfully
L 01/04/2013 - 18:19:29: [META] ini: Begin reading plugins list: /home/data/srv/srv642865/cstrike/addons/metamod/plugins.ini
L 01/04/2013 - 18:19:29: [META] ini: Read plugin config for: <dproto_i386.so>
L 01/04/2013 - 18:19:29: [META] ini: Read plugin config for: <amxmodx_mm_i386.so>
L 01/04/2013 - 18:19:29: [META] ini: Finished reading plugins list: /home/data/srv/srv642865/cstrike/addons/metamod/plugins.ini; Found 2 plugins to load
L 01/04/2013 - 18:19:29: [META] dll: Loading plugins...
L 01/04/2013 - 18:19:29: [DPROTO]:  Loading config './dproto.cfg'
L 01/04/2013 - 18:19:29: [DPROTO]:  LoggingMode = 2
L 01/04/2013 - 18:19:29: [DPROTO]: AuthID for HLTV: HLTV
L 01/04/2013 - 18:19:29: [DPROTO]: AuthID for No-steam p47 clients: STEAM_ID_LAN
L 01/04/2013 - 18:19:29: [DPROTO]: AuthID for No-steam p48 clients: VALVE_ID_LAN
L 01/04/2013 - 18:19:29: [DPROTO]: AuthID for steam clients: Real STEAM_x:x:x
L 01/04/2013 - 18:19:29: [DPROTO]: AuthID for steam unauthorized clients: STEAM_ID_PENDING
L 01/04/2013 - 18:19:29: [DPROTO]: AuthID for RevEmu clients: Real STEAM_x:x:x
L 01/04/2013 - 18:19:29: [DPROTO]: AuthID for SteamClient2009 clients: Real STEAM_x:x:x
L 01/04/2013 - 18:19:29: [DPROTO]: AuthID for Old RevEmu clients: Real STEAM_x:x:x
L 01/04/2013 - 18:19:29: [DPROTO]: AuthID for SteamEmu clients: Real STEAM_x:x:x
L 01/04/2013 - 18:19:29: [DPROTO]: AuthID for AVSMP clients: Real STEAM_x:x:x
L 01/04/2013 - 18:19:29: [DPROTO]: AuthID for SETTI server scanner: STEAM id generated by ip
L 01/04/2013 - 18:19:29: [DPROTO]: AuthID for SXEI clients: Real STEAM_x:x:x
L 01/04/2013 - 18:19:29: [DPROTO]:  Enable SteamID generation based on data sent by sXeI client: OFF
L 01/04/2013 - 18:19:29: [DPROTO]:  SC2009 => revEmu Steamid Compatibility fix: ENABLED
L 01/04/2013 - 18:19:29: [DPROTO]: p47 Emus SteamEmuCompatMode : ON
L 01/04/2013 - 18:19:29: [DPROTO]: Disable fix for steamids generated by eST in 0.3.1 version: No
L 01/04/2013 - 18:19:29: [DPROTO]:  First prefix of authids genrated by ip: 0
L 01/04/2013 - 18:19:29: [DPROTO]:  Second prefix of authids genrated by ip: 4
L 01/04/2013 - 18:19:29: [DPROTO]:  First prefix of authids assigned by native auth method(Steam): 0
L 01/04/2013 - 18:19:29: [DPROTO]:  First prefix of authids assigned by SteamClient2009: 0
L 01/04/2013 - 18:19:29: [DPROTO]:  First prefix of authids assigned by RevEmu: 0
L 01/04/2013 - 18:19:29: [DPROTO]:  First prefix of authids assigned by old RevEmu: 0
L 01/04/2013 - 18:19:29: [DPROTO]:  First prefix of authids assigned by SteamEmu: 0
L 01/04/2013 - 18:19:29: [DPROTO]:  First prefix of authids for AVSMP clients: 0
L 01/04/2013 - 18:19:29: [DPROTO]:  First prefix of authids for Setti server scanner: 0
L 01/04/2013 - 18:19:29: [DPROTO]:  First prefix of authids for SXEI clients: 0
L 01/04/2013 - 18:19:29: [DPROTO]:  [FakePlayers]: Timeout for connecting clients: 6 seconds
L 01/04/2013 - 18:19:29: [DPROTO]:  [FakePlayers]: Timeout for client's uniquity validation: 8 seconds
L 01/04/2013 - 18:19:29: [DPROTO]:  [FakePlayers]: Agressive check reconnecting players: ON
L 01/04/2013 - 18:19:29: [DPROTO]: Ban IP that spamming fake players for: 120.000000 minutes
L 01/04/2013 - 18:19:29: [DPROTO]:  Disable Native Auth (Steam/Valve): OFF
L 01/04/2013 - 18:19:29: [DPROTO]:  ServerInfo answer type: Hybrid
L 01/04/2013 - 18:19:29: [DPROTO]: Setting game name to: 'by Serva4ok.ru'
L 01/04/2013 - 18:19:29: [DPROTO]:  Enable Fix for player ids on hlstats monitoring: OFF
L 01/04/2013 - 18:19:29: [DPROTO]: dp_version cvar will be exported: Yes
L 01/04/2013 - 18:19:29: [DPROTO]:  HLTV Kick Exception Address: 127.0.0.1
L 01/04/2013 - 18:19:29: [DPROTO]:  Config sucessfully loaded.
L 01/04/2013 - 18:19:29: [DPROTO]: Server port: 28047
L 01/04/2013 - 18:19:29: [DPROTO]: engine_i686.so found at 0xf70d4000
L 01/04/2013 - 18:19:29: [DPROTO]: Patching for: <Dynamic p48 Linux patcher>...
L 01/04/2013 - 18:19:29: [DPROTO]: Done.
L 01/04/2013 - 18:19:29: [META] dll: Loaded plugin 'dproto': dproto v0.9.179 2012-08-05, Crock
L 01/04/2013 - 18:19:29: [META] dll: Loaded plugin 'MySQL': MySQL v1.8.2-dev Jul  1 2011, AMX Mod X Dev Team
L 01/04/2013 - 18:19:29: [META] dll: Loaded plugin 'Fun': Fun v1.8.2-dev Jul  1 2011, AMX Mod X Dev Team
L 01/04/2013 - 18:19:29: [META] dll: Loaded plugin 'CStrike': CStrike v1.8.2-dev Jul  1 2011, AMX Mod X Dev Team
L 01/04/2013 - 18:19:29: [META] dll: Loaded plugin 'CSX': CSX v1.8.2-dev Jul  1 2011, AMX Mod X Dev Team
L 01/04/2013 - 18:19:29: [META] dll: Loaded plugin 'AMX Mod X': AMX Mod X v1.8.2-dev Jul  1 2011, AMX Mod X Dev Team
L 01/04/2013 - 18:19:29: [META] WARNING: dll: Not loading plugin 'MySQL'; already loaded (status=running)
L 01/04/2013 - 18:19:29: [META] WARNING: dll: Failed to load plugin 'mysql_amxx_i386.so'
L 01/04/2013 - 18:19:29: [META] WARNING: dll: Not loading plugin 'Fun'; already loaded (status=running)
L 01/04/2013 - 18:19:29: [META] WARNING: dll: Failed to load plugin 'fun_amxx_i386.so'
L 01/04/2013 - 18:19:29: [META] WARNING: dll: Not loading plugin 'CStrike'; already loaded (status=running)
L 01/04/2013 - 18:19:29: [META] WARNING: dll: Failed to load plugin 'cstrike_amxx_i386.so'
L 01/04/2013 - 18:19:29: [META] WARNING: dll: Not loading plugin 'CSX'; already loaded (status=running)
L 01/04/2013 - 18:19:29: [META] WARNING: dll: Failed to load plugin 'csx_amxx_i386.so'
L 01/04/2013 - 18:19:29: [META] dll: Finished loading 2 plugins
L 01/04/2013 - 18:19:29: Log file closed


2)
Код
L 01/04/2013 - 18:19:29: Log file started (file "logs/L0104001.log") (game "cstrike") (version "48/1.1.2.6/Stdio/5787")
L 01/04/2013 - 18:19:29: Loading map "jail_xmf"
L 01/04/2013 - 18:19:29: Server cvars start
L 01/04/2013 - 18:19:29: Server cvar "_tutor_bomb_viewable_check_interval" = "0.5"
L 01/04/2013 - 18:19:29: Server cvar "_tutor_debug_level" = "0"
L 01/04/2013 - 18:19:29: Server cvar "_tutor_examine_time" = "0.5"
L 01/04/2013 - 18:19:29: Server cvar "_tutor_hint_interval_time" = "10.0"
L 01/04/2013 - 18:19:29: Server cvar "_tutor_look_angle" = "10"
L 01/04/2013 - 18:19:29: Server cvar "_tutor_look_distance" = "200"
L 01/04/2013 - 18:19:29: Server cvar "_tutor_message_character_display_time_coefficient" = "0.07"
L 01/04/2013 - 18:19:29: Server cvar "_tutor_message_minimum_display_time" = "1"
L 01/04/2013 - 18:19:29: Server cvar "_tutor_message_repeats" = "5"
L 01/04/2013 - 18:19:29: Server cvar "_tutor_view_distance" = "1000"
L 01/04/2013 - 18:19:29: Server cvar "allow_spectators" = "1.0"
L 01/04/2013 - 18:19:29: Server cvar "amx_client_languages" = ""
L 01/04/2013 - 18:19:29: Server cvar "amxmodx_version" = ""
L 01/04/2013 - 18:19:29: Server cvar "coop" = "0"
L 01/04/2013 - 18:19:29: Server cvar "deathmatch" = "1"
L 01/04/2013 - 18:19:29: Server cvar "decalfrequency" = "30"
L 01/04/2013 - 18:19:29: Server cvar "dp_version" = "0.9.179"
L 01/04/2013 - 18:19:29: Server cvar "edgefriction" = "2"
L 01/04/2013 - 18:19:29: Server cvar "hostage_debug" = "0"
L 01/04/2013 - 18:19:29: Server cvar "hostage_stop" = "0"
L 01/04/2013 - 18:19:29: Server cvar "humans_join_team" = "any"
L 01/04/2013 - 18:19:29: Server cvar "max_queries_sec" = "3.0"
L 01/04/2013 - 18:19:29: Server cvar "max_queries_sec_global" = "30"
L 01/04/2013 - 18:19:29: Server cvar "max_queries_window" = "60"
L 01/04/2013 - 18:19:29: Server cvar "metamod_version" = "1.19p32"
L 01/04/2013 - 18:19:29: Server cvar "mp_allowmonsters" = "0"
L 01/04/2013 - 18:19:29: Server cvar "mp_autokick" = "1"
L 01/04/2013 - 18:19:29: Server cvar "mp_autoteambalance" = "1"
L 01/04/2013 - 18:19:29: Server cvar "mp_buytime" = "1.5"
L 01/04/2013 - 18:19:29: Server cvar "mp_c4timer" = "45"
L 01/04/2013 - 18:19:29: Server cvar "mp_chattime" = "10"
L 01/04/2013 - 18:19:29: Server cvar "mp_consistency" = "1"
L 01/04/2013 - 18:19:29: Server cvar "mp_fadetoblack" = "0"
L 01/04/2013 - 18:19:29: Server cvar "mp_flashlight" = "0"
L 01/04/2013 - 18:19:29: Server cvar "mp_footsteps" = "1"
L 01/04/2013 - 18:19:29: Server cvar "mp_forcecamera" = "0"
L 01/04/2013 - 18:19:29: Server cvar "mp_forcechasecam" = "0"
L 01/04/2013 - 18:19:29: Server cvar "mp_fragsleft" = "0"
L 01/04/2013 - 18:19:29: Server cvar "mp_freezetime" = "6"
L 01/04/2013 - 18:19:29: Server cvar "mp_friendlyfire" = "0"
L 01/04/2013 - 18:19:29: Server cvar "mp_ghostfrequency" = "0.1"
L 01/04/2013 - 18:19:29: Server cvar "mp_hostagepenalty" = "13"
L 01/04/2013 - 18:19:29: Server cvar "mp_kickpercent" = "0.66"
L 01/04/2013 - 18:19:29: Server cvar "mp_limitteams" = "2"
L 01/04/2013 - 18:19:29: Server cvar "mp_logdetail" = "0"
L 01/04/2013 - 18:19:29: Server cvar "mp_logfile" = "1"
L 01/04/2013 - 18:19:29: Server cvar "mp_logmessages" = "1"
L 01/04/2013 - 18:19:29: Server cvar "mp_mapvoteratio" = "0.66"
L 01/04/2013 - 18:19:29: Server cvar "mp_maxrounds" = "0"
L 01/04/2013 - 18:19:29: Server cvar "mp_mirrordamage" = "0"
L 01/04/2013 - 18:19:29: Server cvar "mp_playerid" = "0"
L 01/04/2013 - 18:19:29: Server cvar "mp_roundtime" = "5"
L 01/04/2013 - 18:19:29: Server cvar "mp_startmoney" = "800"
L 01/04/2013 - 18:19:29: Server cvar "mp_timeleft" = "0"
L 01/04/2013 - 18:19:29: Server cvar "mp_timelimit" = "0"
L 01/04/2013 - 18:19:29: Server cvar "mp_tkpunish" = "0"
L 01/04/2013 - 18:19:29: Server cvar "mp_windifference" = "1"
L 01/04/2013 - 18:19:29: Server cvar "mp_winlimit" = "0"
L 01/04/2013 - 18:19:29: Server cvar "pausable" = "0"
L 01/04/2013 - 18:19:29: Server cvar "sv_accelerate" = "10"
L 01/04/2013 - 18:19:29: Server cvar "sv_aim" = "0"
L 01/04/2013 - 18:19:29: Server cvar "sv_airaccelerate" = "10"
L 01/04/2013 - 18:19:29: Server cvar "sv_airmove" = "1"
L 01/04/2013 - 18:19:29: Server cvar "sv_allowupload" = "1"
L 01/04/2013 - 18:19:29: Server cvar "sv_bounce" = "1"
L 01/04/2013 - 18:19:29: Server cvar "sv_cheats" = "0"
L 01/04/2013 - 18:19:29: Server cvar "sv_clienttrace" = "1"
L 01/04/2013 - 18:19:29: Server cvar "sv_clipmode" = "0"
L 01/04/2013 - 18:19:29: Server cvar "sv_contact" = ""
L 01/04/2013 - 18:19:29: Server cvar "sv_friction" = "4"
L 01/04/2013 - 18:19:29: Server cvar "sv_gravity" = "800"
L 01/04/2013 - 18:19:29: Server cvar "sv_logblocks" = "0"
L 01/04/2013 - 18:19:29: Server cvar "sv_maxrate" = "25000"
L 01/04/2013 - 18:19:29: Server cvar "sv_maxspeed" = "600"
L 01/04/2013 - 18:19:29: Server cvar "sv_minrate" = "2500"
L 01/04/2013 - 18:19:29: Server cvar "sv_password" = ""
L 01/04/2013 - 18:19:29: Server cvar "sv_proxies" = "1"
L 01/04/2013 - 18:19:29: Server cvar "sv_region" = "3"
L 01/04/2013 - 18:19:29: Server cvar "sv_restart" = "0"
L 01/04/2013 - 18:19:29: Server cvar "sv_restartround" = "0"
L 01/04/2013 - 18:19:29: Server cvar "sv_stepsize" = "18"
L 01/04/2013 - 18:19:29: Server cvar "sv_stopspeed" = "100"
L 01/04/2013 - 18:19:29: Server cvar "sv_uploadmax" = "0.5"
L 01/04/2013 - 18:19:29: Server cvar "sv_voiceenable" = "1"
L 01/04/2013 - 18:19:29: Server cvar "sv_wateraccelerate" = "10"
L 01/04/2013 - 18:19:29: Server cvar "sv_waterfriction" = "1"
L 01/04/2013 - 18:19:29: Server cvars end
L 01/04/2013 - 18:19:29: [META] dll: Loaded plugin 'Engine': Engine v1.8.2-dev Jul  1 2011, AMX Mod X Dev Team
L 01/04/2013 - 18:19:29: [META] dll: Loaded plugin 'FakeMeta': FakeMeta v1.8.2-dev Jul  1 2011, AMX Mod X Dev Team
L 01/04/2013 - 18:19:29: [META] WARNING: Failed to find memloc for regcmd 'ham'
L 01/04/2013 - 18:19:29: [META] dll: Loaded plugin 'Ham Sandwich': Ham Sandwich v1.8.2-dev Jul  1 2011, AMX Mod X Dev Team
L 01/04/2013 - 18:19:29: Server cvar "amxmodx_version" = "1.8.2-dev"
L 01/04/2013 - 18:19:29: Server cvar "sv_maxspeed" = "900"
L 01/04/2013 - 18:19:29: Server cvar "amx_language" = "en"
L 01/04/2013 - 18:19:29: Server cvar "amx_client_languages" = "1"
L 01/04/2013 - 18:19:29: Server cvar "amx_language" = "ru"
L 01/04/2013 - 18:19:29: Server cvar "amx_nextmap" = "jail_xmf"
L 01/04/2013 - 18:19:29: Server cvar "jbextreme" = "1.9"
L 01/04/2013 - 18:19:29: Server cvar "jbe_es" = "1.5"
L 01/04/2013 - 18:19:29: Server cvar "AcidoX" = "Speedometer 1.1"
L 01/04/2013 - 18:19:29: Server cvar "sv_amxxhookmod" = "version 1.5"
L 01/04/2013 - 18:19:29: Server cvar "grab_plus_version" = "1.2.3"
L 01/04/2013 - 18:19:29: Server cvar "sv_accelerate" = "5"
L 01/04/2013 - 18:19:29: Server cvar "sv_stopspeed" = "75"
L 01/04/2013 - 18:19:30: Started map "jail_xmf" (CRC "174492096")
L 01/04/2013 - 18:19:30: Server cvar "amx_client_languages" = "0"
L 01/04/2013 - 18:19:30: Log file closed



3)
Код
L 01/04/2013 - 18:19:30: Log file started (file "logs/L0104002.log") (game "cstrike") (version "48/1.1.2.6/Stdio/5787")
L 01/04/2013 - 18:19:30: Server cvar "mp_logdetail" = "3"
L 01/04/2013 - 18:19:30: Server cvar "mp_timelimit" = "20"
L 01/04/2013 - 18:19:30: Server cvar "mp_autokick" = "0"
L 01/04/2013 - 18:19:30: Server cvar "mp_flashlight" = "1"
L 01/04/2013 - 18:19:30: Server cvar "mp_freezetime" = "0"
L 01/04/2013 - 18:19:30: Server cvar "mp_friendlyfire" = "1"
L 01/04/2013 - 18:19:30: Server cvar "mp_hostagepenalty" = "0"
L 01/04/2013 - 18:19:30: Server cvar "mp_limitteams" = "0"
L 01/04/2013 - 18:19:30: Server cvar "mp_buytime" = "0.50"
L 01/04/2013 - 18:19:30: Server cvar "mp_forcechasecam" = "2"
L 01/04/2013 - 18:19:30: Server cvar "mp_kickpercent" = "100"
L 01/04/2013 - 18:19:30: Server cvar "mp_playerid" = "1"
L 01/04/2013 - 18:19:30: Server cvar "mp_chattime" = "3"
L 01/04/2013 - 18:19:30: Server cvar "sv_maxspeed" = "600"
L 01/04/2013 - 18:19:30: Server cvar "allow_spectators" = "1"
L 01/04/2013 - 18:19:30: Server cvar "decalfrequency" = "60"
L 01/04/2013 - 18:19:30: Log file closed


4)

Код
Пустой файл -_-
Перейти в начало страницы         Просмотр профиля    Отправить личное сообщение
   + Цитировать сообщение
Статус пользователя Andris1446
сообщение 4.1.2013, 16:33
Сообщение #14
Стаж: 13 лет

Сообщений: 164
Благодарностей: 4
Полезность: < 0

Потом поставил в ini файле loading_banner.amxx debug

И получил еще логи.
1)

Код
L 01/04/2013 - 18:19:30: Log file started (file "logs/L0104003.log") (game "cstrike") (version "48/1.1.2.6/Stdio/5787")
L 01/04/2013 - 18:19:37: World triggered "Round_Start"
L 01/04/2013 - 18:20:54: Rcon: "rcon 1030820581 Auud3Z51Mj2F stats" from "188.127.246.100:60810"
L 01/04/2013 - 18:27:54: Rcon: "rcon 1030820581 Auud3Z51Mj2F changelevel jail_xmf" from "188.127.246.100:52100"
L 01/04/2013 - 18:27:54: [META] ini: Begin re-reading plugins list: /home/data/srv/srv642865/cstrike/addons/metamod/plugins.ini
L 01/04/2013 - 18:27:54: [META] ini: Read plugin config for: dproto
L 01/04/2013 - 18:27:54: [META] ini: Read plugin config for: AMX Mod X
L 01/04/2013 - 18:27:54: [META] ini: Finished reading plugins list: /home/data/srv/srv642865/cstrike/addons/metamod/plugins.ini; Found 2 plugins
L 01/04/2013 - 18:27:54: [META] dll: Updating plugins...
L 01/04/2013 - 18:27:54: [META] dll: Finished updating 9 plugins; kept 2, loaded 0, unloaded 0, reloaded 0, delayed 0
L 01/04/2013 - 18:27:54: Log file closed


2)

Код
L 01/04/2013 - 18:27:54: Log file started (file "logs/L0104004.log") (game "cstrike") (version "48/1.1.2.6/Stdio/5787")
L 01/04/2013 - 18:27:54: Loading map "jail_xmf"
L 01/04/2013 - 18:27:54: Server cvars start
L 01/04/2013 - 18:27:54: Server cvar "_tutor_bomb_viewable_check_interval" = "0.5"
L 01/04/2013 - 18:27:54: Server cvar "_tutor_debug_level" = "0"
L 01/04/2013 - 18:27:54: Server cvar "_tutor_examine_time" = "0.5"
L 01/04/2013 - 18:27:54: Server cvar "_tutor_hint_interval_time" = "10.0"
L 01/04/2013 - 18:27:54: Server cvar "_tutor_look_angle" = "10"
L 01/04/2013 - 18:27:54: Server cvar "_tutor_look_distance" = "200"
L 01/04/2013 - 18:27:54: Server cvar "_tutor_message_character_display_time_coefficient" = "0.07"
L 01/04/2013 - 18:27:54: Server cvar "_tutor_message_minimum_display_time" = "1"
L 01/04/2013 - 18:27:54: Server cvar "_tutor_message_repeats" = "5"
L 01/04/2013 - 18:27:54: Server cvar "_tutor_view_distance" = "1000"
L 01/04/2013 - 18:27:54: Server cvar "AcidoX" = "Speedometer 1.1"
L 01/04/2013 - 18:27:54: Server cvar "allow_spectators" = "1"
L 01/04/2013 - 18:27:54: Server cvar "amx_client_languages" = "0"
L 01/04/2013 - 18:27:54: Server cvar "amx_language" = "ru"
L 01/04/2013 - 18:27:54: Server cvar "amx_nextmap" = "jail_xmf"
L 01/04/2013 - 18:27:54: Server cvar "amx_timeleft" = "11:34"
L 01/04/2013 - 18:27:54: Server cvar "amxmodx_version" = "1.8.2-dev"
L 01/04/2013 - 18:27:54: Server cvar "coop" = "0"
L 01/04/2013 - 18:27:54: Server cvar "deathmatch" = "1"
L 01/04/2013 - 18:27:54: Server cvar "decalfrequency" = "60"
L 01/04/2013 - 18:27:54: Server cvar "dp_version" = "0.9.179"
L 01/04/2013 - 18:27:54: Server cvar "edgefriction" = "2"
L 01/04/2013 - 18:27:54: Server cvar "grab_plus_version" = "1.2.3"
L 01/04/2013 - 18:27:54: Server cvar "hostage_debug" = "0"
L 01/04/2013 - 18:27:54: Server cvar "hostage_stop" = "0"
L 01/04/2013 - 18:27:54: Server cvar "humans_join_team" = "any"
L 01/04/2013 - 18:27:54: Server cvar "jbe_es" = "1.5"
L 01/04/2013 - 18:27:54: Server cvar "jbextreme" = "1.9"
L 01/04/2013 - 18:27:54: Server cvar "max_queries_sec" = "3.0"
L 01/04/2013 - 18:27:54: Server cvar "max_queries_sec_global" = "30"
L 01/04/2013 - 18:27:54: Server cvar "max_queries_window" = "60"
L 01/04/2013 - 18:27:54: Server cvar "metamod_version" = "1.19p32"
L 01/04/2013 - 18:27:54: Server cvar "mp_allowmonsters" = "0"
L 01/04/2013 - 18:27:54: Server cvar "mp_autokick" = "0"
L 01/04/2013 - 18:27:54: Server cvar "mp_autoteambalance" = "1"
L 01/04/2013 - 18:27:54: Server cvar "mp_buytime" = "0.50"
L 01/04/2013 - 18:27:54: Server cvar "mp_c4timer" = "45"
L 01/04/2013 - 18:27:54: Server cvar "mp_chattime" = "3"
L 01/04/2013 - 18:27:54: Server cvar "mp_consistency" = "1"
L 01/04/2013 - 18:27:54: Server cvar "mp_fadetoblack" = "0"
L 01/04/2013 - 18:27:54: Server cvar "mp_flashlight" = "1"
L 01/04/2013 - 18:27:54: Server cvar "mp_footsteps" = "1"
L 01/04/2013 - 18:27:54: Server cvar "mp_forcecamera" = "0"
L 01/04/2013 - 18:27:54: Server cvar "mp_forcechasecam" = "2"
L 01/04/2013 - 18:27:54: Server cvar "mp_fragsleft" = "0"
L 01/04/2013 - 18:27:54: Server cvar "mp_freezetime" = "0"
L 01/04/2013 - 18:27:54: Server cvar "mp_friendlyfire" = "1"
L 01/04/2013 - 18:27:54: Server cvar "mp_ghostfrequency" = "0.1"
L 01/04/2013 - 18:27:54: Server cvar "mp_hostagepenalty" = "0"
L 01/04/2013 - 18:27:54: Server cvar "mp_kickpercent" = "100"
L 01/04/2013 - 18:27:54: Server cvar "mp_limitteams" = "0"
L 01/04/2013 - 18:27:54: Server cvar "mp_logdetail" = "3"
L 01/04/2013 - 18:27:54: Server cvar "mp_logfile" = "1"
L 01/04/2013 - 18:27:54: Server cvar "mp_logmessages" = "1"
L 01/04/2013 - 18:27:54: Server cvar "mp_mapvoteratio" = "0.66"
L 01/04/2013 - 18:27:54: Server cvar "mp_maxrounds" = "0"
L 01/04/2013 - 18:27:54: Server cvar "mp_mirrordamage" = "0"
L 01/04/2013 - 18:27:54: Server cvar "mp_playerid" = "1"
L 01/04/2013 - 18:27:54: Server cvar "mp_roundtime" = "5"
L 01/04/2013 - 18:27:54: Server cvar "mp_startmoney" = "800"
L 01/04/2013 - 18:27:54: Server cvar "mp_timeleft" = "0"
L 01/04/2013 - 18:27:54: Server cvar "mp_timelimit" = "20"
L 01/04/2013 - 18:27:54: Server cvar "mp_tkpunish" = "0"
L 01/04/2013 - 18:27:54: Server cvar "mp_windifference" = "1"
L 01/04/2013 - 18:27:54: Server cvar "mp_winlimit" = "0"
L 01/04/2013 - 18:27:54: Server cvar "pausable" = "0"
L 01/04/2013 - 18:27:54: Server cvar "sv_accelerate" = "5"
L 01/04/2013 - 18:27:54: Server cvar "sv_aim" = "0"
L 01/04/2013 - 18:27:54: Server cvar "sv_airaccelerate" = "10"
L 01/04/2013 - 18:27:54: Server cvar "sv_airmove" = "1"
L 01/04/2013 - 18:27:54: Server cvar "sv_allowupload" = "1"
L 01/04/2013 - 18:27:54: Server cvar "sv_alltalk" = "0"
L 01/04/2013 - 18:27:54: Server cvar "sv_amxxhookmod" = "version 1.5"
L 01/04/2013 - 18:27:54: Server cvar "sv_bounce" = "1"
L 01/04/2013 - 18:27:54: Server cvar "sv_cheats" = "0"
L 01/04/2013 - 18:27:54: Server cvar "sv_clienttrace" = "1"
L 01/04/2013 - 18:27:54: Server cvar "sv_clipmode" = "0"
L 01/04/2013 - 18:27:54: Server cvar "sv_contact" = ""
L 01/04/2013 - 18:27:54: Server cvar "sv_friction" = "4"
L 01/04/2013 - 18:27:54: Server cvar "sv_gravity" = "800"
L 01/04/2013 - 18:27:54: Server cvar "sv_logblocks" = "0"
L 01/04/2013 - 18:27:54: Server cvar "sv_maxrate" = "25000"
L 01/04/2013 - 18:27:54: Server cvar "sv_maxspeed" = "600"
L 01/04/2013 - 18:27:54: Server cvar "sv_minrate" = "2500"
L 01/04/2013 - 18:27:54: Server cvar "sv_password" = ""
L 01/04/2013 - 18:27:54: Server cvar "sv_proxies" = "1"
L 01/04/2013 - 18:27:54: Server cvar "sv_region" = "3"
L 01/04/2013 - 18:27:54: Server cvar "sv_restart" = "0"
L 01/04/2013 - 18:27:54: Server cvar "sv_restartround" = "0"
L 01/04/2013 - 18:27:54: Server cvar "sv_stepsize" = "18"
L 01/04/2013 - 18:27:54: Server cvar "sv_stopspeed" = "75"
L 01/04/2013 - 18:27:54: Server cvar "sv_uploadmax" = "0.5"
L 01/04/2013 - 18:27:54: Server cvar "sv_voiceenable" = "1"
L 01/04/2013 - 18:27:54: Server cvar "sv_wateraccelerate" = "10"
L 01/04/2013 - 18:27:54: Server cvar "sv_waterfriction" = "1"
L 01/04/2013 - 18:27:54: Server cvars end
L 01/04/2013 - 18:27:54: Server cvar "sv_maxspeed" = "900"
L 01/04/2013 - 18:27:55: Started map "jail_xmf" (CRC "174492096")
L 01/04/2013 - 18:27:55: Log file closed


3)

Код
Пустой -_-


И чтож мне с этим делать?
Перейти в начало страницы         Просмотр профиля    Отправить личное сообщение
   + Цитировать сообщение
Статус пользователя Andris1446
сообщение 4.1.2013, 17:11
Сообщение #15
Стаж: 13 лет

Сообщений: 164
Благодарностей: 4
Полезность: < 0

Вот еще нашел логи


Код
L 01/04/2013 - 00:10:37: [mapchooser.amxx] Vote: Voting for the nextmap starte
L 01/04/2013 - 00:10:53: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 00:12:52: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 00:12:52: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 00:12:52: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 00:30:40: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 00:30:56: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 00:33:08: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 00:33:09: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 00:33:09: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 00:50:58: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 00:51:13: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 00:53:25: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 00:53:25: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 00:53:25: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 01:11:14: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 01:11:29: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 01:13:42: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 01:13:42: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 01:13:42: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 01:31:31: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 01:31:46: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 01:33:59: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 01:33:59: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 01:33:59: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 01:51:48: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 01:52:03: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 01:54:15: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 01:54:16: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 01:54:16: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 02:12:04: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 02:12:19: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 02:14:32: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 02:14:32: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 02:14:32: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 02:32:21: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 02:32:36: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 02:34:49: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 02:34:49: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 02:34:49: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 02:52:37: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 02:52:52: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 02:55:05: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 02:55:05: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 02:55:05: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 03:12:54: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 03:13:09: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 03:15:22: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 03:15:22: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 03:15:22: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 03:33:11: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 03:33:26: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 03:35:38: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 03:35:39: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 03:35:39: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 03:53:42: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 03:53:57: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 03:55:55: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 03:55:55: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 03:55:55: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 04:13:54: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 04:14:10: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 04:16:08: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 04:16:08: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 04:16:08: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 04:34:10: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 04:34:25: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 04:36:24: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 04:36:25: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 04:36:25: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 04:54:27: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 04:54:42: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 04:56:41: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 04:56:41: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 04:56:41: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 05:14:44: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 05:14:59: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 05:16:58: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 05:16:58: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 05:16:58: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 05:35:00: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 05:35:15: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 05:37:14: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 05:37:15: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 05:37:15: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 05:55:17: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 05:55:32: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 05:57:31: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 05:57:31: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 05:57:31: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 06:15:33: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 06:15:49: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 06:17:48: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 06:17:48: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 06:17:48: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 06:35:50: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 06:36:05: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 06:38:04: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 06:38:04: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 06:38:04: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 06:56:07: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 06:56:22: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 06:58:21: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 06:58:21: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 06:58:21: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 07:16:23: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 07:16:38: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 07:18:37: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 07:18:38: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 07:18:38: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 07:36:40: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 07:36:55: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 07:38:54: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 07:38:54: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 07:38:54: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 07:56:56: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 07:57:11: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 07:59:11: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 07:59:11: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 07:59:11: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 08:17:13: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 08:17:28: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 08:19:27: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 08:19:28: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 08:19:28: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 08:37:30: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 08:37:45: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 08:39:44: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 08:39:44: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 08:39:44: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 08:57:46: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 08:58:01: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 09:00:00: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 09:00:01: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 09:00:01: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 09:18:03: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 09:18:18: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 09:20:17: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 09:20:17: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 09:20:17: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 09:38:19: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 09:38:34: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 09:40:34: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 09:40:34: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 09:40:34: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 09:58:36: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 09:58:51: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 10:00:50: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 10:00:50: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 10:00:50: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 10:18:53: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 10:19:08: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 10:21:07: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 10:21:07: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 10:21:07: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 10:39:09: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 10:39:24: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 10:41:23: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 10:41:24: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 10:41:24: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 10:59:27: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 10:59:42: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 11:01:40: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 11:01:40: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 11:01:40: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 11:19:29: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 11:19:44: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 11:21:57: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 11:21:57: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 11:21:57: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 11:39:46: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 11:40:01: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 11:42:13: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 11:42:14: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 11:42:14: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 12:00:02: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 12:00:17: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 12:02:30: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 12:02:30: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 12:02:30: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 12:20:19: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 12:20:34: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 12:22:47: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 12:22:47: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 12:22:47: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 12:23:37: [admin.amxx] Login: "Tails the Fox<18><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 12:24:12: [mapsmenu.amxx] Cmd: "Tails the Fox<18><STEAM_0:0:909847486><>" changelevel "jail_xmf"
L 01/04/2013 - 12:24:14: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 12:24:14: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 12:24:14: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 12:24:15: [admin.amxx] Login: "Tails the Fox<18><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 12:44:31: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 12:44:31: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 12:44:31: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 12:44:34: [admin.amxx] Login: "Tails the Fox<18><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:04:28: [admin.amxx] Login: "Tails the Fox<19><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:04:35: [mapsmenu.amxx] Cmd: "Tails the Fox<19><STEAM_0:0:909847486><>" changelevel "jail_xmf"
L 01/04/2013 - 13:04:37: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 13:04:37: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 13:04:37: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 13:04:37: [admin.amxx] Login: "Tails the Fox<19><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:04:40: [admin.amxx] Login: "Tails the Fox<20><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:05:01: [admin.amxx] Login: "Tails the Fox<21><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:17:03: [admin.amxx] Login: "Tails the Fox<22><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:17:13: [mapsmenu.amxx] Cmd: "Tails the Fox<22><STEAM_0:0:909847486><>" changelevel "jail_xmf"
L 01/04/2013 - 13:17:15: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 13:17:16: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 13:17:16: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 13:17:16: [admin.amxx] Login: "Tails the Fox<22><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:17:44: [admin.amxx] Login: "Tails the Fox<23><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:32:24: [admin.amxx] Login: "Tails the Fox<24><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:32:31: [mapsmenu.amxx] Cmd: "Tails the Fox<24><STEAM_0:0:909847486><>" changelevel "jail_xmf"
L 01/04/2013 - 13:32:33: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 13:32:33: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 13:32:33: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 13:32:34: [admin.amxx] Login: "Tails the Fox<24><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:32:36: [admin.amxx] Login: "Tails the Fox<25><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:32:53: [admin.amxx] Login: "Tails the Fox<26><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:34:16: [admin.amxx] Login: "Tails the Fox<27><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:34:23: [admin.amxx] Login: "Tails the Fox<28><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:34:44: [admin.amxx] Login: "Tails the Fox<29><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:35:13: [admin.amxx] Login: "Tails the Fox<30><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:35:30: [admin.amxx] Login: "Tails the Fox<31><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:36:06: [admin.amxx] Login: "Tails the Fox<32><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:36:27: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 13:36:28: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 13:36:28: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 13:36:28: [admin.amxx] Login: "Tails the Fox<32><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:36:49: [admin.amxx] Login: "Tails the Fox<33><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:42:55: [admin.amxx] Login: "Tails the Fox<34><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:43:02: [mapsmenu.amxx] Cmd: "Tails the Fox<34><STEAM_0:0:909847486><>" changelevel "jail_xmf"
L 01/04/2013 - 13:43:04: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 13:43:05: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 13:43:05: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 13:43:05: [admin.amxx] Login: "Tails the Fox<34><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:43:07: [admin.amxx] Login: "Tails the Fox<35><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:43:35: [admin.amxx] Login: "Tails the Fox<36><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:43:37: [admin.amxx] Login: "Tails the Fox<37><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:43:46: [mapsmenu.amxx] Cmd: "Tails the Fox<37><STEAM_0:0:909847486><>" changelevel "jail_xmf"
L 01/04/2013 - 13:43:48: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 13:43:49: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 13:43:49: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 13:43:49: [admin.amxx] Login: "Tails the Fox<37><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:44:06: [admin.amxx] Login: "Tails the Fox<38><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:44:08: [admin.amxx] Login: "Tails the Fox<39><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:54:28: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 13:54:29: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 13:54:29: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 13:54:41: [admin.amxx] Login: "Tails the Fox<40><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:54:43: [admin.amxx] Login: "Tails the Fox<41><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:55:06: [admin.amxx] Login: "Tails the Fox<42><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:55:07: [admin.amxx] Login: "Tails the Fox<43><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:58:02: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 13:58:02: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 13:58:02: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 13:58:26: [admin.amxx] Login: "Tails the Fox<44><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 13:58:34: [mapsmenu.amxx] Cmd: "Tails the Fox<44><STEAM_0:0:909847486><>" changelevel "jail_xmf"
L 01/04/2013 - 13:58:36: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 13:58:36: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 13:58:36: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 13:58:37: [admin.amxx] Login: "Tails the Fox<44><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 14:18:53: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 14:18:53: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 14:18:53: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 14:39:09: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 14:39:10: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 14:39:10: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 14:57:12: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 14:57:27: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 14:59:26: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 14:59:26: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 14:59:26: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 15:06:54: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 15:06:54: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 15:06:54: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 15:09:26: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 15:09:27: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 15:09:27: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 15:09:39: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 15:09:40: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 15:09:40: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 15:10:49: [admin.amxx] Login: "Tails the Fox<45><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 15:10:58: [mapsmenu.amxx] Cmd: "Tails the Fox<45><STEAM_0:0:909847486><>" changelevel "jail_xmf"
L 01/04/2013 - 15:11:01: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 15:11:01: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 15:11:01: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 15:11:01: [admin.amxx] Login: "Tails the Fox<45><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 15:17:13: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 15:17:14: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 15:17:14: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 15:19:48: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 15:19:49: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 15:19:49: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 15:21:04: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 15:21:04: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 15:21:04: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 15:41:20: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 15:41:21: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 15:41:21: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 15:59:23: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 15:59:38: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 16:01:37: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 16:01:37: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 16:01:37: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 16:19:40: [mapchooser.amxx] Vote: Voting for the nextmap started
L 01/04/2013 - 16:19:55: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust2
L 01/04/2013 - 16:21:54: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 16:21:54: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 16:21:54: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 16:24:16: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 16:24:16: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 16:24:16: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 16:25:21: [admin.amxx] Login: "Tails the Fox<46><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 16:27:11: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 16:27:11: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 16:27:11: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 16:27:45: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 16:27:45: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 16:27:45: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 16:47:47: -------- Mapchange to de_dust2 --------
L 01/04/2013 - 16:47:47: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 16:47:47: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 17:03:37: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 17:03:37: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 17:03:37: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 17:05:22: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 17:05:22: [nextmap.amxx] WARNING: Couldn't find a valid map or the file doesn't exist (file "mapcycle.txt")
L 01/04/2013 - 17:05:22: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 17:05:22: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 17:08:48: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 17:08:49: [nextmap.amxx] WARNING: Couldn't find a valid map or the file doesn't exist (file "mapcycle.txt")
L 01/04/2013 - 17:08:49: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 17:08:49: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 17:09:45: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 17:09:46: [nextmap.amxx] WARNING: Couldn't find a valid map or the file doesn't exist (file "mapcycle.txt")
L 01/04/2013 - 17:09:46: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 17:09:46: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 17:10:14: [admin.amxx] Login: "Tails the Fox<1><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 17:12:25: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 17:12:25: [nextmap.amxx] WARNING: Couldn't find a valid map or the file doesn't exist (file "mapcycle.txt")
L 01/04/2013 - 17:12:25: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 17:12:25: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 17:32:26: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 17:32:26: [nextmap.amxx] WARNING: Couldn't find a valid map or the file doesn't exist (file "mapcycle.txt")
L 01/04/2013 - 17:32:26: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 17:32:26: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 17:52:28: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 17:52:28: [nextmap.amxx] WARNING: Couldn't find a valid map or the file doesn't exist (file "mapcycle.txt")
L 01/04/2013 - 17:52:28: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 17:52:28: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 18:09:32: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 18:09:33: [nextmap.amxx] WARNING: Couldn't find a valid map or the file doesn't exist (file "mapcycle.txt")
L 01/04/2013 - 18:09:33: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 18:09:33: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 18:10:59: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 18:10:59: [nextmap.amxx] WARNING: Couldn't find a valid map or the file doesn't exist (file "mapcycle.txt")
L 01/04/2013 - 18:10:59: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 18:10:59: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 18:11:21: [admin.amxx] Login: "Tails the Fox<2><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 18:11:37: [mapsmenu.amxx] Cmd: "Tails the Fox<2><STEAM_0:0:909847486><>" changelevel "jail_xmf"
L 01/04/2013 - 18:11:39: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 18:11:39: [nextmap.amxx] WARNING: Couldn't find a valid map or the file doesn't exist (file "mapcycle.txt")
L 01/04/2013 - 18:11:39: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 18:11:39: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 18:11:39: [admin.amxx] Login: "Tails the Fox<2><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 18:15:15: [admin.amxx] Login: "Tails the Fox<3><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 18:15:25: [mapsmenu.amxx] Cmd: "Tails the Fox<3><STEAM_0:0:909847486><>" changelevel "jail_xmf"
L 01/04/2013 - 18:15:27: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 18:15:27: [nextmap.amxx] WARNING: Couldn't find a valid map or the file doesn't exist (file "mapcycle.txt")
L 01/04/2013 - 18:15:27: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 18:15:27: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 18:15:27: [admin.amxx] Login: "Tails the Fox<3><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 18:15:29: [admin.amxx] Login: "Tails the Fox<4><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 18:18:16: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 18:18:16: [nextmap.amxx] WARNING: Couldn't find a valid map or the file doesn't exist (file "mapcycle.txt")
L 01/04/2013 - 18:18:16: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 18:18:16: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 18:19:29: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 18:19:29: [nextmap.amxx] WARNING: Couldn't find a valid map or the file doesn't exist (file "mapcycle.txt")
L 01/04/2013 - 18:19:29: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 18:19:29: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 18:27:54: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 18:27:55: [nextmap.amxx] WARNING: Couldn't find a valid map or the file doesn't exist (file "mapcycle.txt")
L 01/04/2013 - 18:27:55: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 18:27:55: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 18:37:56: [admin.amxx] Login: "Tails the Fox<1><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 18:37:58: [admin.amxx] Login: "Tails the Fox<2><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 18:38:12: [mapsmenu.amxx] Cmd: "Tails the Fox<2><STEAM_0:0:909847486><>" changelevel "jail_xmf"
L 01/04/2013 - 18:38:14: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 18:38:15: [nextmap.amxx] WARNING: Couldn't find a valid map or the file doesn't exist (file "mapcycle.txt")
L 01/04/2013 - 18:38:15: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 18:38:15: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
L 01/04/2013 - 18:38:15: [admin.amxx] Login: "Tails the Fox<2><STEAM_0:0:909847486><>" became an admin (account "Tails the Fox") (access "abcdefghijklmnopqrstu") (address "93.81.143.252")
L 01/04/2013 - 18:58:16: -------- Mapchange to jail_xmf --------
L 01/04/2013 - 18:58:16: [nextmap.amxx] WARNING: Couldn't find a valid map or the file doesn't exist (file "mapcycle.txt")
L 01/04/2013 - 18:58:16: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/acm.txt
L 01/04/2013 - 18:58:16: [AMXX] Failed to open dictionary file: cstrike/addons/amxmodx/data/lang/grab_plus.txt
Перейти в начало страницы         Просмотр профиля    Отправить личное сообщение
   + Цитировать сообщение
  Тема закрытаНачать новую тему
 
0 пользователей и 1 гостей читают эту тему: