4 Errors ( Help Please ) - 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: 4 Errors ( Help Please ) (
/showthread.php?tid=495691)
4 Errors ( Help Please ) -
Clad - 18.02.2014
Solved.
Re: 4 Errors ( Help Please ) -
CuervO - 18.02.2014
Functions are case sensitive.
GivePlayer
Rcash
Could be
GivePlayer
Cash.
Search for said function and correct your grammar.
Re: 4 Errors ( Help Please ) -
Clad - 18.02.2014
CuverO It's not a grammar mistake
Код:
new Rcash[MAX_PLAYERS];
stock GivePlayerRcash(playerid, money)
{
Rcash[playerid] = Rcash[playerid] + money;
return Rcash[playerid];
}
Re: 4 Errors ( Help Please ) -
Necip - 18.02.2014
Put the function before the script. Put it on the top.
Re: 4 Errors ( Help Please ) -
Clad - 18.02.2014
Still the same Necip