23.07.2016, 08:39
Now i understood you are copying pasting a script from other script. Thats why you are getting errors.these vars are not declared in your script.If you just want a raw function to change GivePlayerMoney to giveMoney you can either define a macro (which i wont recommend)
or write this function
Also you misinterepting the fact about functions
PHP код:
#define GivePlayerMoney giveMoney
PHP код:
giveMoney(playerid, amount)
{
return GivePlayerMoney(playerid, amount);
}