07.11.2014, 20:15
Where did you create cashdeposit?
Код:
YCMD:bizwithdraw(playerid, params[], help)
{
new cashdeposit;
if(help) return SCM(playerid, COLOR_GREY, "Not supported");
if(IsPlayerConnected(playerid))
{
new string[256], cashdeposit, bouse = PlayerInfo[playerid][pPbiskey];
if (bouse == 9999)
{
SCM(playerid, COLOR_GRAD2, " You don't own a business");
return 1;
}
if(sscanf(params, "d", cashdeposit))
{
format(string, sizeof(string), " You Have $%d in your till.", BizzInfo[bouse][bTill]);
SCM(playerid, COLOR_GRAD3, string);
SCM(playerid, COLOR_GRAD2, "USAGE: /bizwithdraw [amount]");
return 1;
}
....

