- เครดิต
- 203
- ความรู้
-
- เงิน $
-
- ความดี
-
|
ถามเรื่องสคริปกล่องที อยากถามว่าตั้งเปอเซ็นการแตกของกล่องที่ได้เงินเยอะปรับตรงไหนแล้วทั้ง2อย่างนี่ปรับจำนวนสุ่มเงินตรงไหน
if(strcmp(cmd, "/openbox", true) == 0)
{
if(IsPlayerConnected(playerid))
{
if(PlayerInfo[playerid][pBox] <=0)
{
SendClientMessage(playerid, COLOR_LIGHTRED, " äÁèÁÕ¡Åèͧ");
return 1;
}
if(PlayerInfo[playerid][pLevel] >= 1)
{
GetPlayerName(playerid, sendername, sizeof(sendername));
new randsmoke = random(100)+50;
if(randsmoke >= 1 && randsmoke <= 99)
{
new box = 2000000 + random (8000000);
GetPlayerName(playerid, sendername, sizeof(sendername));
SafeGivePlayerMoney(playerid, box);
format(string,sizeof(string), "* %s ä´éËÂÔºà§Ô¹ÍÍ¡ÁҹѺ", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
format(string, sizeof(string), "** %s à¢Òä´éÃѺàÈÉà§Ô¹¨Ó¹Ç¹ $%d", sendername,box);
SendClientMessageToAll(0x61F600AA, string);
PlayerInfo[playerid][pBox] -= 1;
return 1;
}
if(randsmoke == 100)
{
GetPlayerName(playerid, sendername, sizeof(sendername));
new box2 = 39000000 + random (4000000);
SafeGivePlayerMoney(playerid, box2);
ClearChatbox(playerid, 500);
format(string,sizeof(string), "* %s ä´éËÂÔºà§Ô¹ÍÍ¡ÁҹѺ", sendername);
ProxDetector(30.0, playerid, string, COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE,COLOR_PURPLE);
format(string, sizeof(string), "** %s ãËéµÒÂÊÔàÍÒà§Ô¹ä»µÕ¡ÃÐËÃÕè·Ñ駪ҵÔÂѧäÁèËÁ´àÅ $%d (à¢Ò⪤´Õ)", sendername,box2);
SendClientMessageToAll(COLOR_YELLOW2, string);
new Float:boomx, Float:boomy, Float:boomz;
GetPlayerPos(giveplayerid,boomx, boomy, boomz);
CreateExplosion(boomx, boomy , boomz, 7, 10);
PlayerPlaySound(playerid, 1052, 0.0, 0.0, 0.0);
PlayerInfo[playerid][pBox] -= 1;
return 1;
}
}
}
return 1;
}
|
|