05.11.2016, 14:32
So, I have this
This
This
Sets the cash to 50, if you had 100 cash then it sets to 50.
I want to give 50$, not give 1$ or set the cash, how?
Gives only 1$, how to give more than 1$? Don't ask me to use GivePlayerMoney or SetPlayerMoney because I made a custom system that shows custom money, not the regular gta cash.
PHP код:
CMD:test(playerid, params[])
{
PlayerInfo[playerid][pCash]++;
return 1;
}
PHP код:
PlayerInfo[playerid][pCash]++;
PHP код:
PlayerInfo[playerid][pCash] = 50;
I want to give 50$, not give 1$ or set the cash, how?
Gives only 1$, how to give more than 1$? Don't ask me to use GivePlayerMoney or SetPlayerMoney because I made a custom system that shows custom money, not the regular gta cash.