SA-MP Forums Archive
[ERROR] help plz - 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] help plz (/showthread.php?tid=602544)



[ERROR] help plz - ahameed4755 - 08.03.2016

Hi,

Im Getting 1 Error.. plz HElp


PHP код:
error 001expected token";"but found "-identifier-" 
Code :

PHP код:
case 3:
        {
        if(
GetPlayerCash(playerid) >=ARMOUR_PRICE)
        {
        
GiveCash(playerid, - ARMOUR_PRICE);
        
SetPlayerArmour(playerid,100)
        
SendClientMessage(playerid,COLOR_ERROR,"You Have Purchased Armour For $100000.");
        }else{
        
SendClientMessage(playerid,COLOR_ERROR,"You Dont Have $100000 To Buy Armour.");
        }
        } 



Re: [ERROR] help plz - adammal - 08.03.2016

SetPlayerArmour(playerid,100);

missing semicolon. Problem solved.


Re: [ERROR] help plz - ahameed4755 - 08.03.2016

Quote:
Originally Posted by adammal
Посмотреть сообщение
SetPlayerArmour(playerid,100);

missing semicolon. Problem solved.
pff.. didnt saw that

thanks

+1 repped