11.01.2015, 08:19
I want to load RemoveBuildingForPlayer function without restarting the server, can someone help me.
for(new i = 0; i < MAX_PLAYERS; i++) //Start looping through all players
{
if(!IsPlayerConnected(i)) continue; //If the player is not connected, skip.
RemoveBuildingForPlayer(i, /*....*/); //Remove the building for the player.
}
pawn Код:
https://sampwiki.blast.hk/wiki/Keywords:Statements#for Also see: https://sampforum.blast.hk/showthread.php?tid=92679 |