what the problem? - 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: what the problem? (
/showthread.php?tid=463415)
what the problem? -
BoU3A - 11.09.2013
PHP код:
Camera1 = CreatePickup(1253, 2, 2495.4333,-1700.7942,1018.3438, -1);
PHP код:
else if (pickupid == Camera1);
{
GivePlayerWeapon(playerid, 43, 50);
}
return 1;
}
PHP код:
C:\Users\John\My own server\gamemodes\Evrything.pwn(320) : error 036: empty statement
Re: what the problem? -
iZN - 11.09.2013
Why you added a semi colon?
pawn Код:
else if(pickupid == Camera1) // here.
{
GivePlayerWeapon(playerid, 43, 50);
}
return 1;
}
Re: what the problem? -
BoU3A - 11.09.2013
Quote:
Originally Posted by iZN
Why you added a semi colon?
pawn Код:
else if(pickupid == Camera1) // here. { GivePlayerWeapon(playerid, 43, 50); } return 1; }
|
LOL! Thanks.