I cant change title of thread now. Can you help me please ? I changed code to this and it doesnt work still. nothing happens :
Code:
public fwd_CmdStart(id, handle)
{
if (!is_user_connected(id))
return FMRES_IGNORED
if (is_user_alive(id) || zp_class_zombie_get_current(id) != g_AntidotID)
return FMRES_IGNORED
if (g_InfectCount[id] < antidot_count)
{
client_print(id, print_center, "Fuck you, you cant use it now");
return FMRES_IGNORED
}
static button
button = get_uc(handle,UC_Buttons)
if (button & IN_USE)
antidot_start(id)
return FMRES_HANDLED
}