06.11.2013, 17:40
I made this :
the question is should I use a stock instead of the callback ?
pawn Код:
public OnPlayerSpawn(playerid)
{
GiveStuffs(playerid);
return 1;
}
pawn Код:
forward GiveStuffs(playerid);
public GiveStuffs(playerid)
{
// here I will check teams & give positions /weapons....
return 1;
}