- เครดิต
- 61
- ความรู้
-
- เงิน $
-
- ความดี
-
|
if(strcmp(cmd, "/bux", true) == 0)//by godzilla.in.th <<ห้ามลบเครดิต
{
if(IsPlayerConnected(playerid))
{
if(gPlayerLogged[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GREY, " คุณยังไม่ได้ล็อคอิน !");
return 1;
}
if(buxready == 1)
{
format(string, sizeof(string), " [BUX]: มีการลงเงินไว้แล้วจำนวน %d /takebuxเพื่อวัดใจ", buxmoney);
SendClientMessage(playerid,COLOR_SUPERRED, string);
return 1;
}
if(PlayerInfo[playerid][pLevel] < 2)
{
SendClientMessage(playerid, COLOR_GRAD2, "คุณต้องมีเลเวลเท่ากับ 2 หรือมากกว่า 2 ขึ้นไป");
return 1;
}
tmp = strtok(cmdtext, idx);
if(!strlen(tmp))
{
SendClientMessage(playerid, COLOR_GRAD1, "USAGE: /bux [จำนวนเงินที่ลงท้าชิง]");
return 1;
}
new amount;
amount = strval(tmp);
if(amount < 10 || amount > 9999) { SendClientMessage(playerid, COLOR_GREY, " จำนวนเงินต้องไม่ต่ำกว่า 10 และไม่มากกว่า 9999!"); return 1; }
GetPlayerName(playerid, sendername, sizeof(sendername));
if (amount > ScriptMoney[playerid] || amount < 1)
{
SendClientMessage(playerid, COLOR_GRAD2, " คุณมีเงินไม่พอเท่ากับที่ลงท้าชิง!");
return 1;
}
buxmoney = amount;
buxready = 1;
SafeGivePlayerMoney(playerid,-amount);
format(string, sizeof(string), "*~[BUX]: %s ได้ลงเงินท้าชิงจำนวน %d หากต้องการวัดใจให้พิม /takebux~*", sendername, amount);
SendClientMessageToAll(COLOR_YELLOW2, string);
}
return 1;
}
if(strcmp(cmd, "/takebux", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(gPlayerLogged[playerid] == 0)
{
SendClientMessage(playerid, COLOR_GREY, " คุณยังไม่ได้ล็อคอิน !");
return 1;
}
if(buxready == 0)
{
SendClientMessage(playerid, COLOR_GREY, " ยังไม่มีการลงเงินใดๆ!");
return 1;
}
if(PlayerInfo[playerid][pLevel] < 2)
{
SendClientMessage(playerid, COLOR_GRAD2, "คุณต้องมีเลเวลเท่ากับ 2 หรือมากกว่า 2 ขึ้นไป");
return 1;
}
if (ScriptMoney[playerid] < buxmoney)
{
format(string, sizeof(string), " [BUX]: คุณมีเงินไม่พอ จำนวนเงินคือ %d", buxmoney);
SendClientMessage(playerid,COLOR_SUPERRED, string);
return 1;
}
new randbux = random(2)+2;
if(randbux == 1 && randbux == 3)
{
format(string, sizeof(string), "*~[BUX]: %s ได้ลงเงินท้าชิงจำนวน %d หากต้องการวัดใจให้พิม /takebux~*", sendername);
SendClientMessageToAll(COLOR_YELLOW2, string);
}
}
return 1;
}
|
|