31.01.2011, 06:43
Here is my command. I've no idea whats wrong with it, I've tried multiple times to fix it...
pawn Код:
CMD:respawnall(playerid, params[])
{
if(PlayerInfo[playerid][pAdmin] >= 2)
{
for(new v=0; v<MAX_VEHICLES; v++)
{
if(!IsVehicleOccupied(v))
{
new string[128];
SetVehicleToRespawn(v);
format(string, 256, "[AdmCmd] %s has respawned all unoccupied vehicles", GetPlayerNameEx(playerid));
SendGlobalMessage(COLOR_ADMIN, string);
return 1;
}
}
}
else {
SendClientMessage(playerid, COLOR_RED, "You are not allowed to use this command.");
}
return 1;
}
pawn Код:
stock IsVehicleOccupied(vehicleid)
{
new playerstate;
for(new i=0;i<MAX_PLAYERS;i++)
{
if(IsPlayerConnected(i))
{
playerstate = GetPlayerState(i);
if(playerstate == PLAYER_STATE_DRIVER || playerstate == PLAYER_STATE_PASSENGER)
{
if(IsPlayerInVehicle(i,vehicleid))
{
return 1;
}
}
}
}
return 0;
}