problem on compile
#1

i try to compile my mode and then i got this message

Код:
C:\Users\ръй\Desktop\gtarp.pwn(15602) : error 012: invalid function call, not a valid address
C:\Users\ръй\Desktop\gtarp.pwn(15602) : warning 215: expression has no effect
C:\Users\ръй\Desktop\gtarp.pwn(15602) : error 001: expected token: ";", but found ")"
C:\Users\ръй\Desktop\gtarp.pwn(15602) : error 029: invalid expression, assumed zero
C:\Users\ръй\Desktop\gtarp.pwn(15602) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


4 Errors.
i need help thank you
Reply
#2

You forgot a ';' at line 15602.
Reply
#3

Quote:
Originally Posted by Born2die
You forgot a ';' at line 15602.
i no thats is the line
BuyAbleVeh(playerid);
i only add a cars shop
and then its happen
Reply
#4

Quote:
Originally Posted by nati558866
Quote:
Originally Posted by Born2die
You forgot a ';' at line 15602.
i no thats is the line
BuyAbleVeh(playerid);
Did you forgot to include something? Show us the code around line 15602
Reply
#5

Quote:
Originally Posted by Born2die
Quote:
Originally Posted by nati558866
Quote:
Originally Posted by Born2die
You forgot a ';' at line 15602.
i no thats is the line
BuyAbleVeh(playerid);
Did you forgot to include something? Show us the code around line 15602
BuyAbleVeh(playerid);
return 1;
}
Reply
#6

Quote:
Originally Posted by nati558866
Quote:
Originally Posted by Born2die
Quote:
Originally Posted by nati558866
Quote:
Originally Posted by Born2die
You forgot a ';' at line 15602.
i no thats is the line
BuyAbleVeh(playerid);
Did you forgot to include something? Show us the code around line 15602
BuyAbleVeh(playerid);
return 1;
}
Seriously lol, I'm nothing with that.
Reply
#7

Quote:
Originally Posted by Born2die
Quote:
Originally Posted by nati558866
Quote:
Originally Posted by Born2die
Quote:
Originally Posted by nati558866
Quote:
Originally Posted by Born2die
You forgot a ';' at line 15602.
i no thats is the line
BuyAbleVeh(playerid);
Did you forgot to include something? Show us the code around line 15602

Код:
if(!strcmp(cmd, "/v", true) || !strcmp(cmd, "/vehicle", true))
	{
	  if(IsPlayerConnected(playerid))
		{
			new x_v[256];
		  x_v = strtok(cmdtext, idx);
			if(!strlen(x_v))
			{
				SendClientMessage(playerid, COLOR_LIGHTBLUE, "USAGE: (/v)ehicle [Action]");
				SendClientMessage(playerid, COLOR_YELLOW2, "list, buy, park, get, find, lock, info");
				SendClientMessage(playerid, COLOR_YELLOW2, "offer, accept, refuse, changecolor, sell");//buylock, buyalarm
				return 1;
	    }
	    else if(!strcmp(x_v, "buy",true))
		  {
		    if(IsPlayerConnected(playerid))
		    {
					if (PlayerToPoint(15.0,playerid,1702.8602,-1469.6306,13.5469))
				  {
				    tmp = strtok(cmdtext, idx);
		 				if(!strlen(tmp))
		 				{
							BuyAbleVeh(playerid);
							return 1;
		  			}
BuyAbleVeh(playerid);
return 1;
}
Seriously lol, I'm nothing with that.
Reply
#8

You probably forgot to include something.
Reply
#9

Quote:
Originally Posted by Born2die
You probably forgot to include something.
i have two modes and i take from my past mode the /v
and copy to my gta rp mode
and now i have problem on compile and i need help
you want all the command?
its very long
Reply
#10

Quote:
Originally Posted by nati558866
Quote:
Originally Posted by Born2die
You probably forgot to include something.
i have two modes and i take from my past mode the /v
and copy to my gta rp mode
and now i have problem on compile and i need help
you want all the command?
its very long
Again, make sure to include all the necessary files. Is 'BuyAbleVeh(playerid);' defined. Also, make sure it isn't "BuyableVeh(playerid);", functions are case sensitive.
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)