script problem
#1

(3777) : error 017: undefined symbol "vehicleid"


(3777) |||| SetVehicleVirtualWorld(vehicleid, GetPlayerVirtualWorld(playerid));
Reply
#2

Means "vehicleid" is not declared.

You can use GetPlayerVehicleID(playerid); instead of vehicleid
Reply
#3

did and now undefined symbol "playerid"
Reply
#4

pawn Код:
for(new playerid=0; playerid<MAX_PLAYERS; playerid++)
Reply
#5

Post the callback or we can't help you...
I think is a timer...
You've to add this on the callback and forward:
Код:
forward CALLBACKNAME(playerid);
public CALLBACKNAME(playerid)
{
//Your code
return 1;
}
Or if you have a stock:
Код:
stock NAMEHERE(playerid)
{
//Your code here
return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)