13.10.2011, 22:20
Hey,
I Added this to my GM to reset player weapons but how would i make it if they have weapons they get banned ? heres the code:
and OnGameModeInit()
how would that be done ? please help XD
I Added this to my GM to reset player weapons but how would i make it if they have weapons they get banned ? heres the code:
pawn Код:
forward reset();
public reset()
{
for(new playerid = 0; playerid < MAX_PLAYERS; playerid++)
{
ResetPlayerWeapons(playerid);
}
return 1;
}
pawn Код:
SetTimer("reset",1000,true);