SA-MP Forums Archive
please help cmds - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: please help cmds (/showthread.php?tid=383424)



please help cmds - ewida - 07.10.2012

when im tybe /cash "amount" im get the cah but im dont see the cash only can see in the /bank!!





Uploaded with ImageShack.us


Re: please help cmds - RLGaming - 07.10.2012

Paste the command.

or;

ZCMD:
Quote:

CMD:cash(playerid, params[])
{
new amount, string[64];
if(sscanf(params, "d", amount)) return SendClientMessage(playerid, COLORHERE, "USAGE: /cash [amount]");

GivePlayerMoney(playerid, amount);
format(string, sizeof(string), "You have recieved $%d!", amount);
SendClientMessage(playerid, COLORHERE, string);
return 1;
}




Re: please help cmds - Mr.Anonymous - 07.10.2012

The cash is probably going in the bank account. Show your command.