Depends.
Code:
#include <amxmodx>
new done[32]
public plugin_init()
{
register_concmd("amx_test","test",ADMIN_KICK," - tests to see if it's already been done this map")
}
public test(id)
{
if(done[id]==1)
{
client_print(id,print_console,"[AMXX] You have already done this command")
}
else
{
client_print(id,print_console,"[AMXX] Test successful. LOL INTERNET")
}
done[id]=1
return PLUGIN_HANDLED
}
__________________