Quote:
Originally Posted by ErikMav94
In the logs shows this and do not know why
Code:
[ttt_core.amxx] STATE Param1 32, Param2 12, plugin ttt_voice.amxx
[ttt_core.amxx] STATE Param1 32, Param2 12, plugin ttt_dna_system.amxx
[ttt_core.amxx] STATE Param1 32, Param2 12, plugin ttt_special_info.amxx
[ttt_core.amxx] ELSE Param1 32, Param2 7, plugin ttt_special_info.amxx
[ttt_core.amxx] STATE Param1 32, Param2 12, plugin ttt_core.amxx
[ttt_core.amxx] ELSE Param1 32, Param2 14, plugin ttt_replacements.amxx
[ttt_core.amxx] STATE Param1 32, Param2 12, plugin ttt_item_c4.amxx
Thousands of logs are generated with that
|
Ahh, sry.
I had forgottent to remove logger and in my test server I didn't see that cause of I never got 32 players ;D
Remove this:
PHP Code:
if(id >= 32 || data >= PLAYER_DATA)
{
static name[40];
get_plugin(plugin, name, charsmax(name));
if(data == PD_PLAYERSTATE)
log_amx("STATE Param1 %d, Param2 %d, plugin %s", id, data, name);
else log_amx("ELSE Param1 %d, Param2 %d, plugin %s", id, data, name);
}
from _get_playerdata and _set_playerdata in ttt_core.sma
Thanks for reporting. Looking forward for your suggestions
__________________