if(strcmp(cmd, "/bet", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(BizzInfo[PlayerInfo[playerid][InBusiness]][bType] == 5)
{
if(!IsAtRLTable(playerid))
{
SendClientMessage(playerid, COLOR_GREY, " You are not near a Roulette table!");
return 1;
}
new ball = random(4);
tmp = strtok(cmdtext, idx);//what does this line do
if(!strlen(tmp))//what does this line do
{
SendClientMessage(playerid, COLOR_WHITE, "USAGE: /bet [red/black] [amount]");
return 1;
}
if(strcmp(tmp,"red",true) == 0)//what does this line do
{
tmp = strtok(cmdtext, idx);//what does this line do
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_WHITE, "USAGE: /bet [red/black] [amount]");
return 1;
}
new mred = strvalEx(tmp);//what does this line do
if(mred < 1 || mred > 10000)
{
SendClientMessage(playerid, COLOR_GREY, " Bet can't be below $0 or above $10,000!");
return 1;
}
GetPlayerName(playerid, sendername, sizeof(sendername));
if(ball == 1)
{
if(PlayerInfo[playerid][pMask] == 1) format(string, sizeof(string), "* Stranger beats on red and won.");
else format(string, sizeof(string), "* %s bets on red and won.", sendername);
ProxDetector(5.0, playerid, string, COLOR_LIGHTGREEN,COLOR_LIGHTGREEN,COLOR_LIGHTGREEN,COLOR_LIGHTGREEN,COLOR_LIGHTGREEN);
format(string, sizeof(string), "* You won $%d.", mred);
SendClientMessage(playerid, COLOR_GREEN, string);
PlayerInfo[playerid][pCash] += mred;
GivePlayerMoney(playerid, mred);
BizzInfo[PlayerInfo[playerid][InBusiness]][bTill] -= mred;
}
else
{
if(PlayerInfo[playerid][pMask] == 1) format(string, sizeof(string), "* Stranger beats on red and lost.");
else format(string, sizeof(string), "* %s bets on red and lost.", sendername);
ProxDetector(5.0, playerid, string, COLOR_LIGHTGREEN,COLOR_LIGHTGREEN,COLOR_LIGHTGREEN,COLOR_LIGHTGREEN,COLOR_LIGHTGREEN);
format(string, sizeof(string), "* You lost $%d.", mred);
SendClientMessage(playerid, COLOR_LIGHTRED, string);
PlayerInfo[playerid][pCash] -= mred;
GivePlayerMoney(playerid, -mred);
BizzInfo[PlayerInfo[playerid][InBusiness]][bTill] += mred;
}
}
if(strcmp(tmp,"black",true) == 0)//what does this line do
{
tmp = strtok(cmdtext, idx);//what does this line do
if(!strlen(tmp))//what does this line do
{
SendClientMessage(playerid, COLOR_WHITE, "USAGE: /bet [black/red] [amount]");
return 1;
}
new mblack = strvalEx(tmp);
if(mblack < 1 || mblack > 10000)
{
SendClientMessage(playerid, COLOR_GREY, " Bet can't be below $0 or above $10,000!");
return 1;
}
GetPlayerName(playerid, sendername, sizeof(sendername));
if(ball == 1)
{
if(PlayerInfo[playerid][pMask] == 1) format(string, sizeof(string), "* Stranger beats on black and won.");
else format(string, sizeof(string), "* %s bets on black and won.", sendername);
ProxDetector(5.0, playerid, string, COLOR_LIGHTGREEN,COLOR_LIGHTGREEN,COLOR_LIGHTGREEN,COLOR_LIGHTGREEN,COLOR_LIGHTGREEN);
format(string, sizeof(string), "* You won $%d.", mblack);
SendClientMessage(playerid, COLOR_GREEN, string);
PlayerInfo[playerid][pCash] += mblack;
GivePlayerMoney(playerid, mblack);
BizzInfo[PlayerInfo[playerid][InBusiness]][bTill] -= mblack;
}
else
{
if(PlayerInfo[playerid][pMask] == 1) format(string, sizeof(string), "* Stranger beats on black and lost.");
else format(string, sizeof(string), "* %s bets on black and lost.", sendername);
ProxDetector(5.0, playerid, string, COLOR_LIGHTGREEN,COLOR_LIGHTGREEN,COLOR_LIGHTGREEN,COLOR_LIGHTGREEN,COLOR_LIGHTGREEN);
format(string, sizeof(string), "* You lost $%d.", mblack);
SendClientMessage(playerid, COLOR_LIGHTRED, string);
PlayerInfo[playerid][pCash] -= mblack;
GivePlayerMoney(playerid, -mblack);
BizzInfo[PlayerInfo[playerid][InBusiness]][bTill] += mblack;
}
}
}
Just search:
https://sampforum.blast.hk/showthread.php?tid=280282 This should pretty much answer all your questions. Take your time and read through it ^_^ |
format(string, sizeof(string), "* %s bets on red and won.", GetName(playerid));
ProxDetector(5.0, playerid, string, -1);
format(string, sizeof(string), "* You won $%d.", mred);
SendClientMessage(playerid, -1, string);
format(string, sizeof(string), "* %s bets on red and lost.", GetName(playerid));
ProxDetector(5.0, playerid, string,-1);
format(string, sizeof(string), "* You lost $%d.", mred);
SendClientMessage(playerid, -1, string);
CMD:bet(playerid,params[])
{
new option[64],string[128];
if(IsPlayerConnected(playerid))
{
new idx = GetPlayerVirtualWorld(playerid)-100;
if(BizInfo[idx][bType] == 7)
{
if(!IsAtRLTable(playerid))
{
SendClientMessage(playerid, error, "You are not near a Roulette table!");
return 1;
}
new ball = random(4);
if(!strcmp(option, "red", true))
{
new mred = strvalEx(option);
if(sscanf(params, "s[8]i", option, mred)) return SendClientMessage(playerid, error, "Usage: /bet [Red/Black][$Amount]");
if(mred < 1 || mred > 50000) return SendClientMessage(playerid, error, "Bet can't be below $1 or above $50,000!");
if(ball == 1)
{
format(string, sizeof(string), "* %s bets on red and won.", GetName(playerid));
ProxDetector(5.0, playerid, string, -1);
format(string, sizeof(string), "* You won $%d.", mred);
SendClientMessage(playerid, -1, string);
pInfo[playerid][Cash] += mred;
GivePlayerCash(playerid, mred);
BizInfo[idx][bMoney] -= mred;
}
else
{
format(string, sizeof(string), "* %s bets on red and lost.", GetName(playerid));
ProxDetector(5.0, playerid, string,-1);
format(string, sizeof(string), "* You lost $%d.", mred);
SendClientMessage(playerid, -1, string);
pInfo[playerid][Cash] -= mred;
GivePlayerCash(playerid, -mred);
BizInfo[idx][bMoney] += mred;
}
if(!strcmp(option, "black", true))
{
new mblack = strvalEx(option);
if(sscanf(params, "s[8]i", option,mblack)) return SendClientMessage(playerid, error, "Usage: /bet [Red/Black][$Amount]");
if(mblack < 1 || mblack > 50000) return SendClientMessage(playerid, error, "Bet can't be below $1 or above $50,000!");
if(ball == 1)
{
format(string, sizeof(string), "* %s bets on black and won.", GetName(playerid));
ProxDetector(5.0, playerid, string, -1);
format(string, sizeof(string), "* You won $%d.", mblack);
SendClientMessage(playerid, -1, string);
pInfo[playerid][Cash] += mblack;
GivePlayerCash(playerid, mblack);
BizInfo[idx][bMoney] -= mblack;
}
else
{
format(string, sizeof(string), "* %s bets on black and lost.", GetName(playerid));
ProxDetector(5.0, playerid, string, -1);
format(string, sizeof(string), "* You lost $%d.", mblack);
SendClientMessage(playerid, -1, string);
pInfo[playerid][Cash] -= mblack;
GivePlayerMoney(playerid, -mblack);
BizInfo[idx][bMoney] += mblack;
}
}
}
}
}
return 1;
}
if(!strcmp(option, "red", true))
PHP код:
![]() |
CMD:bet(playerid,params[])
{
new option[64],string[128], amount;
new idx = GetPlayerVirtualWorld(playerid)-100;
if(BizInfo[idx][bType] == 7)
{
if(!IsAtRLTable(playerid))
{
SendClientMessage(playerid, error, "You are not near a Roulette table!");
return 1;
}
new ball = random(4);
if(sscanf(params, "s[8]i", option,amount)) return SendClientMessage(playerid, error, "Usage: /bet [Red/Black][$Amount]");
if(amount < 1 || amount > 50000) return SendClientMessage(playerid, error, "Bet can't be below $1 or above $50,000!");
if(!strcmp(option, "red", true))
{
if(ball == 1)
{
format(string, sizeof(string), "* %s bets on red and won.", GetName(playerid));
ProxDetector(5.0, playerid, string, -1);
format(string, sizeof(string), "* You won $%d.", amount);
SendClientMessage(playerid, -1, string);
pInfo[playerid][Cash] += amount;
GivePlayerCash(playerid, amount);
BizInfo[idx][bMoney] -= amount;
}
else
{
format(string, sizeof(string), "* %s bets on red and lost.", GetName(playerid));
ProxDetector(5.0, playerid, string,-1);
format(string, sizeof(string), "* You lost $%d.", amount);
SendClientMessage(playerid, -1, string);
pInfo[playerid][Cash] -= amount;
GivePlayerCash(playerid, -amount);
BizInfo[idx][bMoney] += amount;
}
if(!strcmp(option, "black", true))
{
if(mblack < 1 || mblack > 50000) return SendClientMessage(playerid, error, "Bet can't be below $1 or above $50,000!");
if(ball == 1)
{
format(string, sizeof(string), "* %s bets on black and won.", GetName(playerid));
ProxDetector(5.0, playerid, string, -1);
format(string, sizeof(string), "* You won $%d.", amount);
SendClientMessage(playerid, -1, string);
pInfo[playerid][Cash] += amount;
GivePlayerCash(playerid, amount);
BizInfo[idx][bMoney] -= amount;
}
else
{
format(string, sizeof(string), "* %s bets on black and lost.", GetName(playerid));
ProxDetector(5.0, playerid, string, -1);
format(string, sizeof(string), "* You lost $%d.", amount);
SendClientMessage(playerid, -1, string);
pInfo[playerid][Cash] -= amount;
GivePlayerMoney(playerid, -amount);
BizInfo[idx][bMoney] += amount;
}
}
}
}
return 1;
}
PHP код:
EDIT: I've edited the code a bit. Try this |
I added the sscanf at the top and used a common variable 'amount' instead of 'mred' and 'mblack'.
|