Error 017: undefined symbol
#1

I tried to add a new command to the script (zCMD)

This is the code i used.
Код:
CMD:aveh(playerid, params[])
{
    if(!IsPlayerAdmin(playerid)) return 0;
    new type,color,color2,Float:cPos[4];
    if(sscanf(params, "iii", type,color,color2) return SendClientMessage(playerid,COLOR_RED, "/aveh [model] [color] [color]");
    if(type < 400 || type > 611) return SendClientMessage(playerid,COLOR_RED, "vehicle IDs between 400 - 611!");
    if(color> 255 || color< 0) return SendClientMessage(playerid, 0xFFFFFF, "Car color ID's: 0-255");
    if(color2> 255 || color2< 0) return SendClientMessage(playerid, 0xFFFFFF, "Car color ID's: 0-255");
    GetPlayerPos(playerid, cPos[0], cPos[1], cPos[2]);
    GetPlayerFacingAngle(playerid, cPos[3]);
    CreateVehicle(vehicle, cPos[0], cPos[1]-3, cPos[2], cPos[3], color, color2, -1);
    return 1;
}
So far so good, but when i try to compile it
It always gives me 1 error!

Error Code:

Код:
 Error 017: undefined symbol "vehicle"
What did i do to solve this?
Deleted and re-installed all files.
Updates to the latest version
Tried to change "vehicle" and even tried to delete it,...
If i delete it and i go IG it says i spawned it and it says the command doesn't excist...

I hope anyone knows a solution for this...
Reply
#2

Make sure you have it defined like #Define somethingsomething
Reply
#3

Quote:
Originally Posted by Junkyard145
Посмотреть сообщение
Make sure you have it defined like #Define somethingsomething
#Define Vehicle
or more like make a Define aveh for the command?
(Must be a stupid question sorry,...)
Reply
#4

Quote:
Originally Posted by Smikkeltoetje
Посмотреть сообщение
#Define Vehicle
or more like make a Define aveh for the command?
(Must be a stupid question sorry,...)
If it says Undefined Symbol Vehicle then yes try #Define vehicle or #Define Vehicle
Reply
#5

Quote:
Originally Posted by Junkyard145
Посмотреть сообщение
If it says Undefined Symbol Vehicle then yes try #Define vehicle or #Define Vehicle
Getting 5 more errors if i add #define vehicle or #define <vehicle>
awww
Reply
#6

Not sure if this is right,but how about if you use this?

pawn Код:
new vehicle;
Edit:And this the wrong section to post,this section is only for ,how to install sa-mp. If you have any questions help what is releated to Scripting, Post in this section:
http://forum.sa-mp.com/forumdisplay.php?f=12
Reply
#7

isnt this the wrong section? -_________-
Reply
#8

pawn Код:
CMD:aveh(playerid, params[])
{
    if(!IsPlayerAdmin(playerid)) return 0;
    new type,color,color2,Float:cPos[4];
    if(sscanf(params, "iii", type,color,color2) return SendClientMessage(playerid,COLOR_RED, "/aveh [model] [color] [color]");
    if(type < 400 || type > 611) return SendClientMessage(playerid,COLOR_RED, "vehicle IDs between 400 - 611!");
    if(color> 255 || color< 0) return SendClientMessage(playerid, 0xFFFFFF, "Car color ID's: 0-255");
    if(color2> 255 || color2< 0) return SendClientMessage(playerid, 0xFFFFFF, "Car color ID's: 0-255");
    GetPlayerPos(playerid, cPos[0], cPos[1], cPos[2]);
    GetPlayerFacingAngle(playerid, cPos[3]);
    CreateVehicle(type, cPos[0], cPos[1]-3, cPos[2], cPos[3], color, color2, -1);
    return 1;
}
lawl
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)