error 036: empty statement WTF? - 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: error 036: empty statement WTF? (
/showthread.php?tid=652594)
error 036: empty statement WTF? -
3417512908 - 15.04.2018
Simple code.But what`s the "empty statement"?
PHP код:
if(GetPVarInt(playerid,"minigun")==1);
{
GivePlayerWeapon(playerid,38,99999);
}
Someone can help me
thank
Re: error 036: empty statement WTF? -
UFF - 15.04.2018
Код:
if(GetPVarInt(playerid,"minigun")==1)
{
GivePlayerWeapon(playerid,38,99999);
}
Re: error 036: empty statement WTF? -
3417512908 - 15.04.2018
Quote:
Originally Posted by UFF
Код:
if(GetPVarInt(playerid,"minigun")==1)
{
GivePlayerWeapon(playerid,38,99999);
}
|
Oh.I`m so careless.Thank you for your help!