Skocz do zawartości

Witamy w Nieoficjalnym polskim support'cie AMX Mod X

Witamy w Nieoficjalnym polskim support'cie AMX Mod X, jak w większości społeczności internetowych musisz się zarejestrować aby móc odpowiadać lub zakładać nowe tematy, ale nie bój się to jest prosty proces w którym wymagamy minimalnych informacji.
  • Rozpoczynaj nowe tematy i odpowiedaj na inne
  • Zapisz się do tematów i for, aby otrzymywać automatyczne uaktualnienia
  • Dodawaj wydarzenia do kalendarza społecznościowego
  • Stwórz swój własny profil i zdobywaj nowych znajomych
  • Zdobywaj nowe doświadczenia

Dołączona grafika Dołączona grafika

Guest Message by DevFuse
 

Zdjęcie

Wyrzuca graczyDuży problem


  • Nie możesz napisać tematu
  • Zaloguj się, aby dodać odpowiedź
15 odpowiedzi w tym temacie

#1 Gabi

    Nowy

  • Girl

Reputacja: 0
Nowy

  • Postów:8
  • Imię:Gabrysia
  • Lokalizacja:Polska
Offline

Napisano 14.10.2012 19:32

Cześć chłopcy ;) Mam taki problem.Gracz wchodzi na mój serwer dałącza się do drużyny i od razu go wyrzuca.Wyskakuje mu taki komunikat >>>dropped Witek from server reason client sent 'drop'<< W czym może tkwić problem ??


Logi Error: Ale już poprawiłam


L 10/14/2012 - 16:09:51: Start of error session.
L 10/14/2012 - 16:09:51: Info (map "de_dust") (file "addons/amxmodx/logs/error_20121014.log")
L 10/14/2012 - 16:09:51: [CSTRIKE] Invalid player 1
L 10/14/2012 - 16:09:51: [AMXX] Run time error 10 (plugin "money.amxx") (native "cs_set_user_money") - debug not enabled!
L 10/14/2012 - 16:09:51: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 10/14/2012 - 16:20:10: Start of error session.
L 10/14/2012 - 16:20:10: Info (map "de_dust") (file "addons/amxmodx/logs/error_20121014.log")
L 10/14/2012 - 16:20:10: [CSTRIKE] Invalid player 1
L 10/14/2012 - 16:20:10: [AMXX] Run time error 10 (plugin "money.amxx") (native "cs_set_user_money") - debug not enabled!
L 10/14/2012 - 16:20:10: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 10/14/2012 - 16:34:05: [CSTRIKE] Invalid player 1
L 10/14/2012 - 16:34:05: [AMXX] Run time error 10 (plugin "money.amxx") (native "cs_set_user_money") - debug not enabled!
L 10/14/2012 - 16:34:05: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 10/14/2012 - 19:18:39: Start of error session.
L 10/14/2012 - 19:18:39: Info (map "de_cbble") (file "addons/amxmodx/logs/error_20121014.log")
L 10/14/2012 - 19:18:39: [CSTRIKE] Invalid player 1
L 10/14/2012 - 19:18:39: [AMXX] Run time error 10 (plugin "money.amxx") (native "cs_set_user_money") - debug not enabled!
L 10/14/2012 - 19:18:39: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 10/14/2012 - 19:22:35: [CSTRIKE] Invalid player 1
L 10/14/2012 - 19:22:35: [AMXX] Run time error 10 (plugin "money.amxx") (native "cs_set_user_money") - debug not enabled!
L 10/14/2012 - 19:22:35: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).


dodam że dproto mam takie >>Dproto 0.9.179 i boty są jak na razie
Proszę o pomoc :(
  • +
  • -
  • 0

#2 sNH.

    Czy MisieQ ukradł ciasteczko?

  • Power User

Reputacja: 299
Wszechwidzący

  • Postów:1 070
  • Steam:steam
  • Imię:Bartek
  • Lokalizacja:Ełk
Offline

Napisano 14.10.2012 19:36

Run time error 10 (plugin "money.amxx") (native "cs_set_user_money") - debug not enabled!

Dodaj do tego pluginu debug i podaj logi, albo od razu daj sma i logi
  • +
  • -
  • 0

#3 Gabi

    Nowy

  • Autor tematu
  • Girl

Reputacja: 0
Nowy

  • Postów:8
  • Imię:Gabrysia
  • Lokalizacja:Polska
Offline

Napisano 14.10.2012 19:43

money.sma


#include <amxmodx>
#include <amxmisc>
#include <cstrike>
#include <hamsandwich>
#include <nvault>

new vault
new cvar_teamtransfer
new joined[33]

public plugin_init()
{
register_plugin("Money Manager", "1.1", "Lucky")

register_clcmd("say", "handle_say")
register_clcmd("say_team", "handle_say")

RegisterHam(Ham_Spawn, "player", "player_spawn", 1)

cvar_teamtransfer = register_cvar("amx_transfer_teamonly", "1")
register_cvar("amx_moneysave_currentmap", "2")

if(get_cvar_num("amx_moneysave_currentmap") == 2)
{
delete_file("addons/amxmodx/data/vault/save_money.vault")
}
vault = nvault_open("save_money")
}

public plugin_end()
{
nvault_close(vault)
}

public client_putinserver(id)
{
joined[id] = false
set_task(60.0, "check_money_msg", id, _, _, "b")
}

public player_spawn(id)
{
if(!joined[id])
{
new authid[32]
get_user_authid(id, authid, 31)
new money = nvault_get(vault, authid)
if(!money)
{
nvault_touch(vault, authid)
cs_set_user_money(id, get_cvar_num("mp_startmoney"))
}
else
{
cs_set_user_money(id, money)
}
joined[id] = true
}
}

public check_money_msg(id)
{
if(cs_get_user_money(id) < get_cvar_num("mp_startmoney"))
{
colorchat(id, "!g[Menadzer Pieniedzy] !nKtos chce pozyczyc od ciebie pieniadze ??!")
colorchat(id, "!g[Menadzer Pieniedzy] !nsay!g/transfer nick gracza ilosc pieniedzy")
}
}

public client_disconnect(id)
{
new authid[32]
get_user_authid(id, authid, 31)
new smoney[11]
num_to_str(cs_get_user_money(id), smoney, 10)
nvault_set(vault, authid, smoney)
remove_task(id)
}

public handle_say(id)
{
new arg[32]
read_argv(1, arg, 31)
new temp[10]
copy(temp, 6, arg)
if(equali(temp, "/money"))
{
if(cs_get_user_money(id) > get_cvar_num("mp_startmoney"))
return PLUGIN_HANDLED
new name[65]
get_user_name(id, name, 64)
new maxpl = get_maxplayers()
for(new i = 1; i <= maxpl; i++)
{
if(get_user_team(i) == get_user_team(id) && cs_get_user_money(i) > cs_get_user_money(id))
{
colorchat(i, "!g[Money Manager] !t%s !nhave only !t$%i!n, transfer money to him: !gsay !t/transfer", name, cs_get_user_money(id))
}
}
return PLUGIN_HANDLED
}
copy(temp, 9, arg)
if(equali(temp, "/transfer"))
{
new args[101], arg1[10], arg2[64], arg3[32]
read_args(args, 100)
remove_quotes(args)
parse(args, arg1, 100, arg2, 63, arg3, 31)
if(!arg2[0] || !arg3[0])
{
colorchat(id, "!g[Menadzer Pieniedzy] !nKod: !gsay !t/transfer <nick gracza albo #ID gracza> <ilosc pieniedzy>")
return PLUGIN_HANDLED
}

new player = cmd_target(id, arg2, 0)
if(!player)
{
colorchat(id, "!g[Menadzer Pieniedzy] !nNie ma takiego gracza !")
return PLUGIN_HANDLED
}
if(get_user_team(id) != get_user_team(player) && get_pcvar_num(cvar_teamtransfer) == 1)
{
colorchat(id, "!g[Money Manager] !nYou can transfer money !tonly to teammates!n!")
return PLUGIN_HANDLED
}

if(player == id)
{
colorchat(id, "!g[Money Manager] !nYou can not transfer money to yourself!")
return PLUGIN_HANDLED
}

if(!is_str_num(arg3))
{
colorchat(id, "!g[Money Manager] !nThis is not a valid money amount!")
return PLUGIN_HANDLED
}

new money_transfer = str_to_num(arg3)

new name1[64], name2[64]
get_user_name(id, name1, 63)
get_user_name(player, name2, 63)
if(money_transfer >= cs_get_user_money(id))
{
colorchat(id, "!g[Money Manager] !nAll your money (!t$%i!n) is transfered to !t%s!n!", cs_get_user_money(id), name2)
colorchat(player, "!g[Money Manager] !t%s !ntransfered all his money (!t$%i!n) to you!", name1, cs_get_user_money(id))
cs_set_user_money(player, cs_get_user_money(player) + cs_get_user_money(id))
cs_set_user_money(id, 0)
}
else
{
colorchat(id, "!g[Money Manager] !n$%i !nis transfered to !t%s!n!", money_transfer, name2)
colorchat(player, "!g[Money Manager] !n%s !ntransfered to you !t$%i!n!", name1, money_transfer)
cs_set_user_money(player, cs_get_user_money(player) + money_transfer)
cs_set_user_money(id, cs_get_user_money(id) - money_transfer)
}
return PLUGIN_HANDLED
}
return PLUGIN_CONTINUE
}

// colored chat
colorchat(id, const msg[], any:...)
{
new message[256]
vformat(message, 255, msg, 3)

replace_all(message, 255, "!n", "^x01")
replace_all(message, 255, "!t", "^x03")
replace_all(message, 255, "!g", "^x04")

if(id == 0)
{
new maxplayers = get_maxplayers()
for(new i = 1; i <= maxplayers; i++)
{
if(is_user_connected(i))
{
message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"), {0,0,0}, i)
write_byte(i)
write_string(message)
message_end()
}
}
}
else
{
if(is_user_connected(id))
{
message_begin(MSG_ONE_UNRELIABLE, get_user_msgid("SayText"), {0,0,0}, id)
write_byte(id)
write_string(message)
message_end()
}
}
}




A to Logi z godz.20.30


L 10/14/2012 - 00:14:38: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 00:14:53: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be as_oilrig
L 10/14/2012 - 00:16:40: -------- Mapchange to as_oilrig --------
L 10/14/2012 - 00:38:56: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 00:39:11: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_siege
L 10/14/2012 - 00:40:58: -------- Mapchange to cs_siege --------
L 10/14/2012 - 01:03:16: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 01:03:31: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_cbble
L 10/14/2012 - 01:05:18: -------- Mapchange to de_cbble --------
L 10/14/2012 - 01:27:35: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 01:27:50: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust
L 10/14/2012 - 01:29:36: -------- Mapchange to de_dust --------
L 10/14/2012 - 01:51:52: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 01:52:07: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_747
L 10/14/2012 - 01:53:54: -------- Mapchange to cs_747 --------
L 10/14/2012 - 02:16:10: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 02:16:25: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_prodigy
L 10/14/2012 - 02:18:12: -------- Mapchange to de_prodigy --------
L 10/14/2012 - 02:40:27: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 02:40:42: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_assault
L 10/14/2012 - 02:42:30: -------- Mapchange to cs_assault --------
L 10/14/2012 - 03:04:45: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 03:05:00: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_office
L 10/14/2012 - 03:06:47: -------- Mapchange to cs_office --------
L 10/14/2012 - 03:29:02: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 03:29:17: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_italy
L 10/14/2012 - 03:31:04: -------- Mapchange to cs_italy --------
L 10/14/2012 - 03:53:19: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 03:53:34: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_backalley
L 10/14/2012 - 03:55:21: -------- Mapchange to cs_backalley --------
L 10/14/2012 - 04:17:36: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 04:17:51: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_militia
L 10/14/2012 - 04:19:38: -------- Mapchange to cs_militia --------
L 10/14/2012 - 04:41:54: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 04:42:09: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_train
L 10/14/2012 - 04:43:56: -------- Mapchange to de_train --------
L 10/14/2012 - 05:06:10: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 05:06:26: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_airstrip
L 10/14/2012 - 05:08:12: -------- Mapchange to de_airstrip --------
L 10/14/2012 - 05:30:27: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 05:30:42: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_havana
L 10/14/2012 - 05:32:30: -------- Mapchange to cs_havana --------
L 10/14/2012 - 05:54:44: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 05:55:00: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_chateau
L 10/14/2012 - 05:56:47: -------- Mapchange to de_chateau --------
L 10/14/2012 - 06:19:02: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 06:19:17: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_aztec
L 10/14/2012 - 06:21:04: -------- Mapchange to de_aztec --------
L 10/14/2012 - 06:43:19: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 06:43:34: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be as_oilrig
L 10/14/2012 - 06:45:21: -------- Mapchange to as_oilrig --------
L 10/14/2012 - 07:07:37: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 07:07:52: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_siege
L 10/14/2012 - 07:09:39: -------- Mapchange to cs_siege --------
L 10/14/2012 - 07:31:55: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 07:32:10: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_cbble
L 10/14/2012 - 07:33:57: -------- Mapchange to de_cbble --------
L 10/14/2012 - 07:56:12: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 07:56:27: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust
L 10/14/2012 - 07:58:13: -------- Mapchange to de_dust --------
L 10/14/2012 - 08:20:28: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 08:20:43: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_747
L 10/14/2012 - 08:22:30: -------- Mapchange to cs_747 --------
L 10/14/2012 - 08:44:45: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 08:45:00: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_prodigy
L 10/14/2012 - 08:46:47: -------- Mapchange to de_prodigy --------
L 10/14/2012 - 09:09:02: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 09:09:17: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_assault
L 10/14/2012 - 09:11:04: -------- Mapchange to cs_assault --------
L 10/14/2012 - 09:33:19: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 09:33:34: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_office
L 10/14/2012 - 09:35:21: -------- Mapchange to cs_office --------
L 10/14/2012 - 09:57:36: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 09:57:51: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_italy
L 10/14/2012 - 09:59:38: -------- Mapchange to cs_italy --------
L 10/14/2012 - 10:21:53: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 10:22:08: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_backalley
L 10/14/2012 - 10:23:55: -------- Mapchange to cs_backalley --------
L 10/14/2012 - 10:46:10: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 10:46:25: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_militia
L 10/14/2012 - 10:48:12: -------- Mapchange to cs_militia --------
L 10/14/2012 - 11:10:28: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 11:10:43: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_train
L 10/14/2012 - 11:12:30: -------- Mapchange to de_train --------
L 10/14/2012 - 11:34:46: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 11:35:01: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_airstrip
L 10/14/2012 - 11:36:48: -------- Mapchange to de_airstrip --------
L 10/14/2012 - 11:59:03: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 11:59:18: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_havana
L 10/14/2012 - 12:01:05: -------- Mapchange to cs_havana --------
L 10/14/2012 - 12:23:20: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 12:23:35: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_chateau
L 10/14/2012 - 12:25:23: -------- Mapchange to de_chateau --------
L 10/14/2012 - 12:47:41: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 12:47:56: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_aztec
L 10/14/2012 - 12:57:51: [afkkicker.amxx] Gr@ka was kicked for being AFK longer than 90 seconds
L 10/14/2012 - 13:10:26: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 13:10:41: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_dust
L 10/14/2012 - 13:12:34: -------- Mapchange to de_dust --------
L 10/14/2012 - 13:22:08: [adminchat.amxx] Chat: "Gr@ka<257><STEAM_0:0:16507256><>" chat "vcndfvnnd"
L 10/14/2012 - 13:22:49: [adminchat.amxx] Chat: "Gr@ka<257><STEAM_0:0:16507256><>" chat "vndjfjvnekvn"
L 10/14/2012 - 13:23:10: [adminchat.amxx] Chat: "Gr@ka<257><STEAM_0:0:16507256><>" chat "PANOWIE JIM CAREY GRA NA SPEED HAKU>WLACZAM VOTEBAN"
L 10/14/2012 - 13:24:57: [adminchat.amxx] Chat: "Gr@ka<257><STEAM_0:0:16507256><>" chat "b"
L 10/14/2012 - 13:25:45: [ban.amxx] Glosowanie zaczete przez Gr@ka na gracza [P*D]Jim_Carrey (100) BOT
L 10/14/2012 - 13:26:00: [ban.amxx] [S.P] Vote zakonczone sukcesem, BOT zostal zbanowany na 720 minut
L 10/14/2012 - 13:35:08: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 13:35:23: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_assault
L 10/14/2012 - 13:37:08: -------- Mapchange to cs_assault --------
L 10/14/2012 - 13:59:26: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 13:59:41: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_siege
L 10/14/2012 - 14:01:30: -------- Mapchange to cs_siege --------
L 10/14/2012 - 14:23:47: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 14:24:02: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_cbble
L 10/14/2012 - 14:25:50: -------- Mapchange to de_cbble --------
L 10/14/2012 - 14:46:07: -------- Mapchange to de_dust --------
L 10/14/2012 - 15:08:25: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 15:08:40: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_airstrip
L 10/14/2012 - 15:10:27: -------- Mapchange to de_airstrip --------
L 10/14/2012 - 15:32:43: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 15:32:58: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_havana
L 10/14/2012 - 15:34:45: -------- Mapchange to cs_havana --------
L 10/14/2012 - 16:08:40: -------- Mapchange to de_dust --------
L 10/14/2012 - 16:09:39: [admin.amxx] Login: "Gr@ka<1><STEAM_0:0:16507256><>" became an admin (account "Gr@ka") (access "abcdefghijklmnopqrstu") (address "78.88.67.122")
L 10/14/2012 - 16:10:56: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:10:56: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:10:57: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:10:57: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:10:57: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:10:57: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:10:57: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:10:57: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:10:58: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:10:58: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:10:58: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:10:58: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:10:58: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:10:58: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:10:59: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:10:59: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:10:59: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:10:59: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:10:59: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:00: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:00: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:00: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:00: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:00: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:01: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:01: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:01: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:01: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:01: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:01: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:02: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:02: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:02: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:02: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:02: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:03: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:03: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:03: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:03: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:03: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:04: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:04: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:04: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:04: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:04: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:05: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:05: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:05: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:05: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:05: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:05: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:05: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:06: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:06: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:06: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:06: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:07: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:07: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:07: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:08: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:08: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:08: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:08: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:08: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:08: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:09: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:09: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:09: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:12: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:12: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:12: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:12: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:13: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:13: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:13: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:13: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:13: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:13: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:14: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:14: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:14: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:14: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:14: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:15: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:15: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:15: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:15: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:15: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:15: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:15: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:16: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:16: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:16: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:16: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:16: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:16: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:17: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:17: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:17: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:17: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:17: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:18: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:18: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:18: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:18: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:18: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:18: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:19: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:19: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:19: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:19: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:19: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:20: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:20: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:20: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:20: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:20: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:21: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:21: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:21: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slap with 0 damage "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:11:26: [plmenu.amxx] Cmd: "Gr@ka<1><STEAM_0:0:16507256><>" slay "Gr@ka<1><STEAM_0:0:16507256><>"
L 10/14/2012 - 16:19:36: -------- Mapchange to de_dust --------
L 10/14/2012 - 16:20:00: [admin.amxx] Login: "Gr@ka<1><STEAM_0:0:16507256><>" became an admin (account "Gr@ka") (access "abcdefghijklmnopqrstu") (address "78.88.67.122")
L 10/14/2012 - 16:34:00: [admin.amxx] Login: "Gr@ka<2><STEAM_0:0:16507256><>" became an admin (account "Gr@ka") (access "abcdefghijklmnopqrstu") (address "78.88.67.122")
L 10/14/2012 - 16:41:37: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 16:41:52: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_airstrip
L 10/14/2012 - 16:43:39: -------- Mapchange to de_airstrip --------
L 10/14/2012 - 17:05:41: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 17:05:56: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_havana
L 10/14/2012 - 17:07:44: -------- Mapchange to cs_havana --------
L 10/14/2012 - 17:29:45: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 17:30:00: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_chateau
L 10/14/2012 - 17:31:48: -------- Mapchange to de_chateau --------
L 10/14/2012 - 17:53:50: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 17:54:05: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_aztec
L 10/14/2012 - 17:55:52: -------- Mapchange to de_aztec --------
L 10/14/2012 - 18:17:52: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 18:18:07: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be as_oilrig
L 10/14/2012 - 18:19:55: -------- Mapchange to as_oilrig --------
L 10/14/2012 - 18:41:55: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 18:42:10: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_siege
L 10/14/2012 - 18:43:57: -------- Mapchange to cs_siege --------
L 10/14/2012 - 19:06:00: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 19:06:15: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_cbble
L 10/14/2012 - 19:08:02: -------- Mapchange to de_cbble --------
L 10/14/2012 - 19:18:14: [admin.amxx] Login: "Gr@ka<3><STEAM_0:0:16507256><>" became an admin (account "Gr@ka") (access "abcdefghijklmnopqrstu") (address "78.88.67.122")
L 10/14/2012 - 19:22:25: [admin.amxx] Login: "Gr@ka<4><STEAM_0:0:16507256><>" became an admin (account "Gr@ka") (access "abcdefghijklmnopqrstu") (address "78.88.67.122")
L 10/14/2012 - 19:22:44: [mapsmenu.amxx] Cmd: "Gr@ka<4><STEAM_0:0:16507256><>" changelevel "de_dust2"
L 10/14/2012 - 19:22:46: -------- Mapchange to de_dust2 --------
L 10/14/2012 - 19:22:48: [admin.amxx] Login: "Gr@ka<4><STEAM_0:0:16507256><>" became an admin (account "Gr@ka") (access "abcdefghijklmnopqrstu") (address "78.88.67.122")
L 10/14/2012 - 19:22:48: [admin.amxx] Login: "Gr@ka<4><STEAM_0:0:16507256><>" became an admin (account "Gr@ka") (access "abcdefghijklmnopqrstu") (address "78.88.67.122")
L 10/14/2012 - 19:45:02: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 19:45:17: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be cs_747
L 10/14/2012 - 19:47:04: -------- Mapchange to cs_747 --------
L 10/14/2012 - 19:48:01: [admin.amxx] Login: "Gr@ka<19><STEAM_0:0:16507256><>" became an admin (account "Gr@ka") (access "abcdefghijklmnopqrstu") (address "78.88.67.122")
L 10/14/2012 - 19:50:33: [adminchat.amxx] Chat: "Gr@ka<19><STEAM_0:0:16507256><>" tsay "Jumbo"
L 10/14/2012 - 19:55:34: [adminchat.amxx] Chat: "Gr@ka<19><STEAM_0:0:16507256><>" tsay "Jumbo"
L 10/14/2012 - 19:55:38: [adminchat.amxx] Chat: "Gr@ka<19><STEAM_0:0:16507256><>" tsay "wyrzuca cie ??"
L 10/14/2012 - 20:08:52: -------- Mapchange to de_dust --------
L 10/14/2012 - 20:31:11: [mapchooser.amxx] Vote: Voting for the nextmap started
L 10/14/2012 - 20:31:26: [mapchooser.amxx] Vote: Voting for the nextmap finished. The nextmap will be de_airstrip
L 10/14/2012 - 20:33:13: -------- Mapchange to de_airstrip --------

  • +
  • -
  • 0

#4 Equilibrium

    Wszechwidzący

  • Użytkownik

Reputacja: 54
Pomocny

  • Postów:248
  • Imię:Dawid
  • Lokalizacja:CelaKarna
Offline

Napisano 15.10.2012 07:16

Error logi?
  • +
  • -
  • 0

b_350_20_692108_381007_FFFFFF_000000.png
b_350_20_692108_381007_FFFFFF_000000.png

b_350_20_692108_381007_FFFFFF_000000.png

 


#5 Gabi

    Nowy

  • Autor tematu
  • Girl

Reputacja: 0
Nowy

  • Postów:8
  • Imię:Gabrysia
  • Lokalizacja:Polska
Offline

Napisano 15.10.2012 12:14

Tak jak wcześniej pisałam,pozbyłam się tego problemu wyrzucając ten plugin! Logi error


L 10/14/2012 - 16:09:51: Start of error session.
L 10/14/2012 - 16:09:51: Info (map "de_dust") (file "addons/amxmodx/logs/error_20121014.log")
L 10/14/2012 - 16:09:51: [CSTRIKE] Invalid player 1
L 10/14/2012 - 16:09:51: [AMXX] Run time error 10 (plugin "money.amxx") (native "cs_set_user_money") - debug not enabled!
L 10/14/2012 - 16:09:51: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 10/14/2012 - 16:20:10: Start of error session.
L 10/14/2012 - 16:20:10: Info (map "de_dust") (file "addons/amxmodx/logs/error_20121014.log")
L 10/14/2012 - 16:20:10: [CSTRIKE] Invalid player 1
L 10/14/2012 - 16:20:10: [AMXX] Run time error 10 (plugin "money.amxx") (native "cs_set_user_money") - debug not enabled!
L 10/14/2012 - 16:20:10: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 10/14/2012 - 16:34:05: [CSTRIKE] Invalid player 1
L 10/14/2012 - 16:34:05: [AMXX] Run time error 10 (plugin "money.amxx") (native "cs_set_user_money") - debug not enabled!
L 10/14/2012 - 16:34:05: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 10/14/2012 - 19:18:39: Start of error session.
L 10/14/2012 - 19:18:39: Info (map "de_cbble") (file "addons/amxmodx/logs/error_20121014.log")
L 10/14/2012 - 19:18:39: [CSTRIKE] Invalid player 1
L 10/14/2012 - 19:18:39: [AMXX] Run time error 10 (plugin "money.amxx") (native "cs_set_user_money") - debug not enabled!
L 10/14/2012 - 19:18:39: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).
L 10/14/2012 - 19:22:35: [CSTRIKE] Invalid player 1
L 10/14/2012 - 19:22:35: [AMXX] Run time error 10 (plugin "money.amxx") (native "cs_set_user_money") - debug not enabled!
L 10/14/2012 - 19:22:35: [AMXX] To enable debug mode, add "debug" after the plugin name in plugins.ini (without quotes).

Użytkownik CheQ edytował ten post 15.10.2012 12:33
Dodane Tagi CODE

  • +
  • -
  • 0

#6 Fail

    Zaawansowany

  • Zbanowany

Reputacja: -15
Tragedia

  • Postów:134
  • Lokalizacja:z forum
Offline

Napisano 15.10.2012 14:46

Zakomentuj 5 pluginów, ktore ostatnio wgrywales, albo zakomentuj wszystkie i sprawdz czy dalej problem wystepuje. Wtedy pojedynczo odkomentuj poszczegolne pluginy i dojdziesz ktory z nich to powoduje. Metoda prob i bledow, tak ciezko jest nam okreslic co ty wgrywales, nie koniecznie musi byc blad w logach, aby stwierdzic ze to ten plugin nawala.

#7 Gabi

    Nowy

  • Autor tematu
  • Girl

Reputacja: 0
Nowy

  • Postów:8
  • Imię:Gabrysia
  • Lokalizacja:Polska
Offline

Napisano 15.10.2012 14:55

Nikt do mnie nie pisał jeszcze w rodzaju męskim ! Noo jesteś pierwszym facetem który tak do mnie napisał :(( ale dziękuję za pomoc
  • +
  • -
  • 0

#8 Droso

    Dawniej HubertTM

  • Support Team

Reputacja: 1 291
Godlike

  • Postów:2 371
  • Steam:steam
  • Imię:Hubert
  • Lokalizacja:Wrocław
Offline

Napisano 15.10.2012 15:05

Sprawdz (tylko money.sma poprawiono):
http://amxx.pl/pastebin/36rce1nt7xog/
Co do kicku, najprawdopodobniej, masz za dużo pluginów ;(, a dokładniej serwer nie ogarnia takiej liczby wiadomości dla gracza.

Użytkownik HubertTM edytował ten post 15.10.2012 15:08

  • +
  • -
  • 1

Piszę pluginy pod: AMX MOD X oraz SOURCE MOD!

Na zlecenie i bez zlecenia zresztą też!


#9 Gabi

    Nowy

  • Autor tematu
  • Girl

Reputacja: 0
Nowy

  • Postów:8
  • Imię:Gabrysia
  • Lokalizacja:Polska
Offline

Napisano 15.10.2012 15:20

Bardzo chętnie bym sprawdziła,ale nie mogę w ogóle skomplikować pliku :/

Zaraz wszystko sprawdzę i po wyrzucam pare pluginów z serwera.Raport zdam nie długo ;) Plusik dla ciebie leci :* :)

Użytkownik Gabi edytował ten post 15.10.2012 15:16

  • +
  • -
  • 0

#10 Droso

    Dawniej HubertTM

  • Support Team

Reputacja: 1 291
Godlike

  • Postów:2 371
  • Steam:steam
  • Imię:Hubert
  • Lokalizacja:Wrocław
Offline

Napisano 15.10.2012 15:20

u mnie idzie, jaki error, albo może nie skopiowałaś ostatniej klamry?
  • +
  • -
  • 0

Piszę pluginy pod: AMX MOD X oraz SOURCE MOD!

Na zlecenie i bez zlecenia zresztą też!


#11 Gabi

    Nowy

  • Autor tematu
  • Girl

Reputacja: 0
Nowy

  • Postów:8
  • Imię:Gabrysia
  • Lokalizacja:Polska
Offline

Napisano 16.10.2012 13:52

Przykro mi,ale problem mam cały czas !! Wyrzuca każdego dropped Witek from server reason client sent 'drop' Wyrzuciłam parę Pluginów i nic nie daje :( PROSZĘ O POMOC :((
  • +
  • -
  • 0

#12 Gość_21977_*

  • Gość

Reputacja: 0

Offline

Napisano 16.10.2012 15:09

Zamiast prosić o pomoc, wykonaj prośbę SlaNdisH!a.

#13 Gabi

    Nowy

  • Autor tematu
  • Girl

Reputacja: 0
Nowy

  • Postów:8
  • Imię:Gabrysia
  • Lokalizacja:Polska
Offline

Napisano 16.10.2012 15:14

Czy można jaśniej ?? Jestem troszkę ograniczona

  • +
  • -
  • 0

#14 Gość_21977_*

  • Gość

Reputacja: 0

Offline

Napisano 16.10.2012 15:18

W pliku amxmodx/configs/plugins.ini odszukaj linijkę
money.amxx
i zamień ją na
money.amxx debug
zapisz zmiany i zmień mapę bądź zresetuj serwer.

Tym samym, logi błędów dla tego pluginu, będą pokazywać dokładnie, w czym tkwi problem i szybciej uzyskasz pomoc.

#15 Gabi

    Nowy

  • Autor tematu
  • Girl

Reputacja: 0
Nowy

  • Postów:8
  • Imię:Gabrysia
  • Lokalizacja:Polska
Offline

Napisano 16.10.2012 18:29

Nie wiem,czy ja nie wyraźnię piszę ! Pisałam już że plugin money.amxx jest już naprawiony ! Chce tylko uzyskać pomoc co do tego >>> dropped Witek from server reason client sent 'drop' ! Jak siępozbyć tego problemu z serwera ?? Wyrzuca graczy po dołączeniu się do Drużyny !! plisssssss. . . .
  • +
  • -
  • 0

#16 Fail

    Zaawansowany

  • Zbanowany

Reputacja: -15
Tragedia

  • Postów:134
  • Lokalizacja:z forum
Offline

Napisano 17.10.2012 17:00

My probojemy ci pomoc, nie interesuje mnie czy jestes kobieta czy mezczyzna w tym problemie to jest bez znaczenia, badz kim chcesz.

Tak jak pisalem wyłącz wszystkie pluginy dodajac ; przed ich nazwa w plugins.ini wtedy co mape wlaczaj jeden/dwa i sie dowiesz ktory to powoduje... Jak tego nie zrobisz, nikt ci nie wymysli w czym tkwi problem.




Użytkownicy przeglądający ten temat: 0

0 użytkowników, 0 gości, 0 anonimowych