SA-MP Forums Archive
Couple of errors - 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: Couple of errors (/showthread.php?tid=424583)



Couple of errors - Squirrel - 22.03.2013

I am getting stranger errors

Код:
BombCar[1] = AddStaticVehicleEx(405,-2089.5093000,-83.0658000,34.8702000,0.9792000,1,1,15);
Код:
D:\Scripting\SAMP 0.3x server\gamemodes\BaysideRP.pwn(791) : warning 215: expression has no effect
D:\Scripting\SAMP 0.3x server\gamemodes\BaysideRP.pwn(791) : error 001: expected token: ";", but found "]"
D:\Scripting\SAMP 0.3x server\gamemodes\BaysideRP.pwn(791) : error 029: invalid expression, assumed zero
D:\Scripting\SAMP 0.3x server\gamemodes\BaysideRP.pwn(791) : fatal error 107: too many error messages on one line



Re: Couple of errors - Patrick - 22.03.2013

Wrong Code
pawn Код:
new BombCar[1];
BombCar[1] = AddStaticVehicleEx(405,-2089.5093000,-83.0658000,34.8702000,0.9792000,1,1,15);
Right Code
pawn Код:
new BombCar[1];
BombCar[0] = AddStaticVehicleEx(405,-2089.5093000,-83.0658000,34.8702000,0.9792000,1,1,15);



Re: Couple of errors - Squirrel - 22.03.2013

Yeah thanks

The error was because I accidentaly deleted new BombCar[1];