09/07/2022 15:40
alguem sabe resolver?
Código PHP:
#include <a_samp>
Código PHP:
#include <sscanf2>
Código PHP:
#include <zcmd>
CMD:dvu(playerid)
{
ResetarCarros(); //warning 202:
return 1;
}
stock ResetarCarros(playerid)
{
new string[128];
GetPlayerName(playerid, string, MAX_PLAYER_NAME+1);
format(string, sizeof(string), "AVISO: O Administrador %s respawnou todos os veiculos!", string);
SendClientMessageToAll(0xF23C3CFF, string);
new bool:inVeh;
for( new i = 0; i < MAX_VEHICLES; i++ )
{
inVeh = false;
for( new j = 0; j < MAX_PLAYERS; j++ )
{
if(IsPlayerInVehicle( j, i ))
{
inVeh = true;
}
}
if(!inVeh) DestroyVehicle(i);
}
return true;
}