not implemented
#1

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?
Reply
#2

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

such as GivePlayerMoney...

GivePlayerMoneyA(playerid, value);
Reply
#4

what should GivePlayerMoneyA do ?
Reply
#5

Remove the ;

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


Forum Jump:


Users browsing this thread: 1 Guest(s)