ลืมรหัสผ่าน
เจ้าของ: futuregta

[คำสั่ง] วาบสำหรับแก๊ง

  [คัดลอกลิงก์]
โพสต์ 2011-12-31 16:59:32 | ดูโพสต์ทั้งหมด
ส่อง
โพสต์ 2012-3-3 11:36:04 | ดูโพสต์ทั้งหมด
if(strcmp(cmd, "/headvalue", true) == 0)
    {
        if(IsPlayerConnected(playerid))
           {
               new gun;
               gun = strval(tmp);
               if(PlayerInfo[playerid][pAdminLevel] <= 2)
               {
                   SendClientMessage(playerid, COLOR_GREY, " you are not authorized to use that command!");
               }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD1, "USAGE: /headvalue [playerid/PartOfName] [gun] [moneys]");
                return 1;
            }
            giveplayerid = ReturnUser(tmp);
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD1, "USAGE: /headvalue [playerid/PartOfName] [gun] [moneys]");
                return 1;
            }
            gun = strval(tmp);
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD1, "USAGE: /headvalue [playerid/PartOfName] [gun] [moneys]");
                return 1;
            }
            if(gun < 1 || gun > 46) { SendClientMessage(playerid, COLOR_GREY, "เลขอาวุธมีแค่ 1-46 เท่านั้น"); return 1; }
            new amount;
            amount = strval(tmp);
            if(amount < 1 || amount > 10000000) { SendClientMessage(playerid, COLOR_GREY, "จำนวนเงินต้องมากกว่า $1 และไม่มากกว่า $10,000,000!"); return 1; }
            if (IsPlayerConnected(giveplayerid))
            {
                if(giveplayerid != INVALID_PLAYER_ID)
                {
                    if(giveplayerid == playerid) { SendClientMessage(playerid, COLOR_GREY, " คุณไม่สามารถจ้างฆ่าตัวเองได้"); return 1; }
                    GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
                    GetPlayerName(playerid, sendername, sizeof(sendername));
                    PlayerInfo[giveplayerid][pKillMoney] += amount;
                    PlayerInfo[giveplayerid][pKillWeapon] = gun;
                    SetPlayerColor(giveplayerid, 0xFF0000FF);
                    format(string, sizeof(string), "[ข่าวสารกิจกรรม]ค่าหัวของ %s ถูกเพิ่มเป็น $%d คุณต้องใช่อาวุธ %s ในการสังหารเท่านั้น",giveplayer, PlayerInfo[giveplayerid][pKillMoney], Weapons[gun]);
                    SendClientMessageToAll(COLOR_YELLOW, string);
                }
            }
            else
            {
                format(string, sizeof(string), " %d ผู้เล่นนั้นไม่ได้อยู่ในเกมส์ครับ", giveplayerid);
                SendClientMessage(playerid, COLOR_GRAD1, string);
            }
        }
        return 1;
    }if(strcmp(cmd, "/headvalue", true) == 0)
    {
        if(IsPlayerConnected(playerid))
           {
               new gun;
               gun = strval(tmp);
               if(PlayerInfo[playerid][pAdminLevel] <= 2)
               {
                   SendClientMessage(playerid, COLOR_GREY, " you are not authorized to use that command!");
               }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD1, "USAGE: /headvalue [playerid/PartOfName] [gun] [moneys]");
                return 1;
            }
            giveplayerid = ReturnUser(tmp);
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD1, "USAGE: /headvalue [playerid/PartOfName] [gun] [moneys]");
                return 1;
            }
            gun = strval(tmp);
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD1, "USAGE: /headvalue [playerid/PartOfName] [gun] [moneys]");
                return 1;
            }
            if(gun < 1 || gun > 46) { SendClientMessage(playerid, COLOR_GREY, "เลขอาวุธมีแค่ 1-46 เท่านั้น"); return 1; }
            new amount;
            amount = strval(tmp);
            if(amount < 1 || amount > 10000000) { SendClientMessage(playerid, COLOR_GREY, "จำนวนเงินต้องมากกว่า $1 และไม่มากกว่า $10,000,000!"); return 1; }
            if (IsPlayerConnected(giveplayerid))
            {
                if(giveplayerid != INVALID_PLAYER_ID)
                {
                    if(giveplayerid == playerid) { SendClientMessage(playerid, COLOR_GREY, " คุณไม่สามารถจ้างฆ่าตัวเองได้"); return 1; }
                    GetPlayerName(giveplayerid, giveplayer, sizeof(giveplayer));
                    GetPlayerName(playerid, sendername, sizeof(sendername));
                    PlayerInfo[giveplayerid][pKillMoney] += amount;
                    PlayerInfo[giveplayerid][pKillWeapon] = gun;
                    SetPlayerColor(giveplayerid, 0xFF0000FF);
                    format(string, sizeof(string), "[ข่าวสารกิจกรรม]ค่าหัวของ %s ถูกเพิ่มเป็น $%d คุณต้องใช่อาวุธ %s ในการสังหารเท่านั้น",giveplayer, PlayerInfo[giveplayerid][pKillMoney], Weapons[gun]);
                    SendClientMessageToAll(COLOR_YELLOW, string);
                }
            }
            else
            {
                format(string, sizeof(string), " %d ผู้เล่นนั้นไม่ได้อยู่ในเกมส์ครับ", giveplayerid);
                SendClientMessage(playerid, COLOR_GRAD1, string);
            }
        }
        return 1;
    }
โพสต์ 2012-3-4 23:10:22 | ดูโพสต์ทั้งหมด
ไหนๆๆ
โพสต์ 2012-3-11 05:36:34 | ดูโพสต์ทั้งหมด
xxxxxxxxxxxxxxxxxxxxxxxxxxxx
โพสต์ 2012-3-24 18:16:00 | ดูโพสต์ทั้งหมด
thxxxxxxxxxxx
โพสต์ 2012-3-26 17:35:48 | ดูโพสต์ทั้งหมด
000000000000000000
โพสต์ 2012-4-1 13:35:18 | ดูโพสต์ทั้งหมด
ดีคับ
โพสต์ 2012-4-14 12:22:19 | ดูโพสต์ทั้งหมด
dsfs
..

..
.
.
.
โพสต์ 2012-4-14 13:18:11 | ดูโพสต์ทั้งหมด
ขอบใจเว้ยไอฟายยยยยยยยยยยย
โพสต์ 2012-4-18 18:30:00 | ดูโพสต์ทั้งหมด
ใจๆๆๆๆๆๆๆๆๆๆๆ
ขออภัย! คุณไม่ได้รับสิทธิ์ในการดำเนินการในส่วนนี้ กรุณาเลือกอย่างใดอย่างหนึ่ง ลงชื่อเข้าใช้ | สมัครสมาชิก

รายละเอียดเครดิต

ปิด

เว็บมาสเตอร์แนะนำก่อนหน้า /1 ต่อไป

รูปแบบข้อความล้วน|Mobile|รายชื่อผู้ถูกระงับบัญชี| Samp-TH GTAOnline Thailand



เว็บสอนเปิดเซิฟเวอร์ GTA SAMP ONLINE, แจกสคริปต์ GTA, ขายสคริปต์ GTA, ซื้อสคริปต์ GTA SAMP, รวมระบบ GTA SAMP, รวมเซิฟ GTA ONLINE SAMP, SAMP-TH.NET, เกมจีทีเอ, GTA SAN, หาเซิฟ GTA เล่น, โปรโมทเซิฟ GTA ONLINE, วิธีเล่น GTA ONLINE, จีทีเอ ออนไลน์, หาเซิฟ GTA, เซิฟ GTA 0.3.7, เซิฟ GTA 0.3e RC5, ระบบเซิฟ GTA, สคริปต์ GTA, GTA ออนไลน์, เว็บโหลด GTA, SAMP-TH, GTA-TH, โคโล GTA, หาเซิฟ GTA ONLINE, COLO-GTA, โคโลจีทีเอ, เช่าโคโล GTA, เซิฟ GTA ออนไลน์

Copyright © 2001-2013 Comsenz Inc.   All Rights Reserved.

Powered by Discuz! X3.4

ตอบกระทู้ ขึ้นไปด้านบน ไปที่หน้ารายการกระทู้