10.01.2017, 15:19
Quote:
|
Код:
//Put this in OnFilterScriptInit
for(new i = 0; i <= GetPlayerPoolSize(); i++)
{
if(!IsPlayerConnected(i)) continue;
RemoveBuildingForPlayer(i /* Use the 'i' as playerid and it will loop through all online players, the rest if your remove building info behind the comma */,
}
|
pawn Код:
for(new i = GetPlayerPoolSize(); i != -1; i--)


