15.01.2013, 21:38
Hello!
I have these errors:
With this!
Can enyone help me out please?
Thank You!
I have these errors:
pawn Код:
C:\Users\user\Desktop\drift\filterscripts\ladmin4.pwn(4998) : error 017: undefined symbol "IsVehicleOccupied"
C:\Users\user\Desktop\drift\filterscripts\ladmin4.pwn(5003) : error 017: undefined symbol "GetPlayerNameEx"
pawn Код:
if(strcmp(cmd, "/respawncars", true) == 0)
{
if(PlayerInfo[playerid][Level] >= 4)
{
for(new i=0;i<MAX_VEHICLES;i++)
{
if(IsVehicleOccupied(i) == 0)
{
SetVehicleToRespawn(i);
}
}
format(string, sizeof(string), "ATTENTION: Unoccupied vehicles respawned by %s.", GetPlayerNameEx(playerid));
SendClientMessageToAll(blue, string);
}
else
{
SendClientMessage(playerid, red, "ERROR: You are not an administrator!");
}
return 1;
}
Thank You!