08.12.2010, 01:07
I want to learn how to make it require one kill before using a command, please give me an example so I can try to do my own
command(stats,playerid, params[])
{
#pragma unused params
if(Kills[playerid] != 0)
{
//DO CMD HERE
}
else
{
SendClientMessage(playerid, WHITE, "You Do Not Have Any Kills!");
}
return 1;
}