05.05.2010, 18:41
Hi there. I`ve made a little command to respawn the all the unused vehicles
Code:
The problem is that it doesn`t do anything....
Code:
Код:
dcmd_respawncars(playerid, params[])
{
#pragma unused params
new pname[MAX_PLAYER_NAME], file[128];
GetPlayerName(playerid, pname, sizeof(pname));
format(file, sizeof(file), "\\Users\\%s.ini", pname);
if(dini_Int(file, "level") >= 4)
{
for(new i=0; i <= MAX_VEHICLES; i++)
{
for(new a=0; a < MAX_PLAYERS; a++)
{
if(!IsPlayerInVehicle(a, i))
{
SetVehicleToRespawn(i);
return 1;
}
return 1;
}
return 1;
}
SendClientMessageToAll(COLOUR_YELLOW, "[ADMIN]: Vehicles respawned by admin!");
return 1;
}
else SendClientMessage(playerid, COLOUR_RED, "You are not allowed to use this command!");
return 1;
}

