SA-MP Forums Archive
expected token: ";" and expected token: "," - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: expected token: ";" and expected token: "," (/showthread.php?tid=524499)



expected token: ";" and expected token: "," - ShiffeyTheGamer - 07.07.2014

I get these errors

(24434) : error 001: expected token: ",", but found "-rational value-"

(24434) : error 001: expected token: ";", but found ")"

Whats at the lines

Код:
    FCFDgate7 = CreateObject(8948, 662.4800, 1719.5699, 7.9500   0.0000, 0.0000, 310.7900);



Re: expected token: ";" and expected token: "," - eXeDev - 07.07.2014

Show me the line above that.


Respuesta: expected token: ";" and expected token: "," - Leon9741 - 07.07.2014

FCFDgate7 = CreateObject(8948, 662.4800, 1719.5699, 7.9500 (, missing) 0.0000, 0.0000, 310.7900);

Try:

pawn Код:
FCFDgate7 = CreateObject(8948, 662.4800, 1719.5699, 7.9500, 0.0000, 0.0000, 310.7900);



Re: expected token: ";" and expected token: "," - Juvanii - 07.07.2014

pawn Код:
FCFDgate7 = CreateObject(8948, 662.4800, 1719.5699, 7.9500, 0.0000, 0.0000, 310.7900);



Re: Respuesta: expected token: ";" and expected token: "," - ShiffeyTheGamer - 07.07.2014

Quote:
Originally Posted by Leon9741
Посмотреть сообщение
FCFDgate7 = CreateObject(8948, 662.4800, 1719.5699, 7.9500 (, missing) 0.0000, 0.0000, 310.7900);

Try:

pawn Код:
FCFDgate7 = CreateObject(8948, 662.4800, 1719.5699, 7.9500, 0.0000, 0.0000, 310.7900);
I diden't see it lol. Compiling now.


Re: expected token: ";" and expected token: "," - ShiffeyTheGamer - 07.07.2014

Worked