SA-MP Forums Archive
1 Error - 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: 1 Error (/showthread.php?tid=425855)



1 Error - DerickClark - 27.03.2013

Код:
 warning 203: symbol is never used: "rank"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


1 Warning.
Код:
cmd:rank(playerid, params[])
{
     if(APlayerData[playerid][StatsTruckerJobs] >= 1)
     {
           SendClientMessage(playerid, COLOR_RED, "Wow, you got more then 1 trucker job. YOu're an respected trucker");
      }
      else if(APlayerData[playerid][StatsTruckerJobs] >= 50)
      {
           SendClientMessage(playerid, COLOR_RED, "Wow, you got more then 50 trucker jobs. You're an famous trucker");
       }
       return 1;
}



Re: 1 Error - kamzaf - 27.03.2013

its capitalized:

pawn Код:
CMD:rank(playerid, params[])



Re: 1 Error - DerickClark - 27.03.2013

Thanks.