SA-MP Forums Archive
not implemented - 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)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: not implemented (/showthread.php?tid=258756)



not implemented - TouR - 01.06.2011

Well i startred making an anticheat for my gamemode, I use a custom function GivePlayerMoneyA(playerid, ammount );

Код:
stock GivePlayerMoneyA(playerid, ammount);
{
	......... (code here )
     return 1;
}
I replaced all "GivePlayerMoney" with "GivePlayerMoneyA" And compiler give me this error

Код:
 error 004: function "GivePlayerMoneyA" is not implemented
Any possible solutions?


Re: not implemented - Ash. - 01.06.2011

How are you using GivePlayerMoneyA? Show us an example at least.


Re: not implemented - TouR - 01.06.2011

such as GivePlayerMoney...

GivePlayerMoneyA(playerid, value);


AW: not implemented - Nero_3D - 01.06.2011

what should GivePlayerMoneyA do ?


Re: not implemented - Laronic - 01.06.2011

Remove the ;

pawn Код:
stock GivePlayerMoneyA(playerid, ammount)
{
    ......... (code here )
     return 1;
}