- เครดิต
- 82
- ความรู้
-
- เงิน $
-
- ความดี
-
|
แก้ไขครั้งสุดท้ายโดย BestZaKunG เมื่อ 2012-12-28 16:08
เพิ่มนี้ลงไป- //------------------------------------------------------[กล่อง]-----------------------------------------------------------
- if(strcmp(cmd, "/givebox", true) == 0) //เปลี่ยนคำสั่งได้คับ เครติด [Best].$KunG$ ใครลบเซิฟเน่าๆๆๆ
- {
- if (PlayerInfo[playerid][pAdmin] >= 2500) //แก้ได้คับ ยศแอดที่จะให้กล่องได้
- {
- if(IsPlayerConnected(playerid))
- {
- tmp = strtok(cmdtext, idx);
- if(!strlen(tmp))
- {
- SendClientMessage(playerid, COLOR_GRAD1, "USAGE: /givebox [playerid/PartOfName] [จำนวนกล่อง]");
- return 1;
- }
- //giveplayerid = strval(tmp);
- giveplayerid = ReturnUser(tmp);
- tmp = strtok(cmdtext, idx);
- if(!strlen(tmp))
- {
- SendClientMessage(playerid, COLOR_GRAD1, "USAGE: /givebox [playerid/PartOfName] [จำนวนกล่อง]");
- return 1;
- }
- new playa;
- GetPlayerName(playa, sendername, sizeof(sendername));
- playa = ReturnUser(tmp);
- moneys = strval(tmp);
- PlayerInfo[giveplayerid][pBox] = moneys;
- GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
- GetPlayerName(playerid, sendername, sizeof(sendername));
- format(string,sizeof(string), "[เทพเจ้า] %s ได้ให้ กล่องความดีแก่ %s %d กล่องวิเศษ", sendername,giveplayer,moneys);
- SendClientMessageToAll(0xF60000AA, string);
- }
- }
- return 1;
- }
คัดลอกไปที่คลิปบอร์ด ต่อไปก็เพิ่มคำสั่งเปิดกล่อง- if(strcmp(cmd, "/ob", true) == 0) //เปลี่ยนคำสั่งได้คับ เครติด [Best].$KunG$ ใครลบเซิฟเน่าๆๆๆ
- {
- 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)+1;
- if(randsmoke >= 1 && randsmoke <= 99)
- {
- new box = 3000 + random (5000);
- GetPlayerName(playerid, sendername, sizeof(sendername));
- SafeGivePlayerMoney(playerid, box);
- //PlayerInfo[playerid][pFire] -= 1;
- 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(0xF600F6AA, string);
- PlayerInfo[playerid][pBox] -= 1;
- return 1;
- }
- if(randsmoke == 100)
- {
- GetPlayerName(playerid, sendername, sizeof(sendername));
- new box2 = 50000 + random (10000);
- SafeGivePlayerMoney(playerid, box2);
- //PlayerInfo[playerid][pFire] -= 1;
- 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(0x00F4F6AA, 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;
คัดลอกไปที่คลิปบอร์ด เสร็จแล้วคับ |
|