07.04.2016, 14:25
Hi, the server the player's money, 1000$ 2000$, 3000$ etc. integer how to get the block ..?
The amount of money 1000/2000/3000 server disable money amount.
Example;
The amount of money 1000/2000/3000 server disable money amount.
Example;
PHP код:
GetMoneyFunction(playerid){
InvalidMoney(playerid);
SendClientMessage(playerid, -1, [Incorrect amount]: You do not get that amount.);
}
PHP код:
stock InvalidMoney(playerid){
GivePlayerMoney(playerid, 1000); // Disable
GivePlayerMoney(playerid, 2000); // Disable
GivePlayerMoney(playerid, 3000); // Disable
}