drekes:
1) allow cmd pause after 60s, but as? its ok for cmd func_pause
Code:
new time = 0
public func_test(id)
{
time=get_user_time(id)
if (time < 60)
{
client_print(id, print_chat, "before 60s - func pause test")
return PLUGIN_HANDLED;
}
else
{
client_print(id, print_chat, "after 60s - func pause test")
client_cmd(id, "pause")
}
return PLUGIN_CONTINUE
}
2,3) Thanks for answer.