12.10.2012, 19:30
assume I know what you have done in the script, then replace the variable & the function that gives the player money.
example:
replace to
example:
PHP код:
CMD:money(playerid, params[])
{
PlayerInfo[playerid][Money] += 100;
}
PHP код:
CMD:money(playerid, params[])
{
GivePlayerCash(playerid, 100); //same as GivePlayerMoney but the differ is it connects the variable with it.
}

