20.11.2011, 21:41
pawn Код:
new bool:VeiculoOcupado[MAX_VEHICLES];//inicio do GM/FS
pawn Код:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
VeiculoOcupado[vehicleid] = true;
return 1;
}
public OnPlayerExitVehicle(playerid, vehicleid)
{
VeiculoOcupado[vehicleid] = false;
return 1;
}
pawn Код:
if(strcmp(cmd, "/rc", true) == 0)
{
if(IsPlayerAdmin(playerid))
{
new nome[MAX_PLAYER_NAME];
GetPlayerName(playerid, nome, MAX_PLAYER_NAME);
new msg[80];
format(msg, sizeof(msg), "O Admin %s Respawnou os veiculos", nome);
SendClientMessageToAll(-1, msg);
for(new v = 0; v <= MAX_VEHICLES; v++)
{
if(VeiculoOcupado[v] == false)
{
SetVehicleToRespawn(v);
}
}
}
else return SendClientMessage(playerid, COLOR_RED, "Vocк nгo estб autorizado a usar este comando!");
}