Cokebear Operator.

Results 1 to 1 of 1
  1. #1
    Elite Member LastAct is offline
    Member +Rank
    Apr 2013 Join Date
    140Posts

    Cokebear Operator.

    Hello, I took on another code from another source, but its half-finished. Does anyone have the finished code? Here is the code I have already, unless someone can finish it themselves, xD. of course, this code is for Cokebear operator. o.o.
    I apologize for all the help requests~.
    Code:
    var points;var status = -1;
    var sel;
    
    
    function start() {
        if (cm.getMapId() == 219000000) {
            cm.sendSimple("#b#L40##m219010000##l\r\n#L41##m219020000##l");
            cm.dispose();
            return;
        }
        var record = cm.getQuestRecord(150001);
        points = record.getCustomData() == null ? "0" : record.getCustomData();
    
    
        cm.sendSimple("Would you like to have a taste of a relentless boss battle?\n\r\n\r #b#L3#Current points#l#k \n\r #b#L0#Warp to Lobby#l  \r\n\r\n#fUI/UIWindow.img/QuestIcon/4/0# \n\r #b#L32#Trade points(1000) for Enchanted Scroll#l#k  \n\r #b#L33#Trade Enchanted Scroll for points(1000)#l#k \n\r #b#L36#Trade points(10000) for Bamboo Luck Sack#l#k  \n\r #b#L37#Trade Bamboo Luck Sack for points(10000)#l#k \n\r #b#L4##i1492023:#Trade 120,000 points (Timeless Blindness)#l#k \n\r #b#L5##i1472068:#Trade 120,000 points (Timeless Lampion)#l#k \n\r #b#L6##i1462050:#Trade 120,000 points (Timeless Black Beauty)#l#k \n\r #b#L7##i1452057:#Trade 120,000 points (Timeless Engaw)#l#k \n\r #b#L8##i1432047:#Trade 120,000 points (Timeless Alchupiz)#l#k \n\r #b#L9##i1382057:#Trade 120,000 points (Timeless Aeas Hand)#l#k \n\r #b#L10##i1372044:#Trade 120,000 points (Timeless Enreal Tear)#l#k \n\r #b#L11##i1332074:#Trade 120,000 points (Timeless Killic)#l#k \n\r #b#L12##i1332073:#Trade 120,000 points (Timeless Pescas)#l#k \n\r #b#L13##i1482023:#Trade 120,000 points (Timeless Equinox)#l#k \n\r #b#L14##i1442063:#Trade 120,000 points (Timeless Diesra)#l#k \n\r #b#L15##i1422037:#Trade 120,000 points (Timeless Bellocce)#l#k \n\r #b#L16##i1412033:#Trade 120,000 points (Timeless Tabarzin)#l#k \n\r #b#L17##i1402046:#Trade 120,000 points (Timeless Nibleheim)#l#k \n\r #b#L18##i1322060:#Trade 120,000 points (Timeless Allargando)#l#k \n\r #b#L19##i1312037:#Trade 120,000 points (Timeless Bardiche)#l#k \n\r #b#L20##i1302081:#Trade 120,000 points (Timeless Executioners)#l#k \n\r #b#L31##i1342011:#Trade 120,000 points (Timeless Katara)#l#k" + (cm.isGMS() ? "\n\r #b#L34##i1532015:#Trade 120,000 points (The Obliterator)#l#k" : "") + "\n\r #b#L21##i2070018:#Trade 125,000 points (Balanced Fury)#l#k \n\r #b#L35##i2070016:#Trade 75,000 points (Crystal Ilbi)#l#k \n\r #b#L22# #i1122017:#Trade 30,000 points (Fairy Pendant, lasts 1 day)#l#k \n\r #b#L27##i2340000:#Trade 75,000 points (White Scroll)#l#k \n\r #b#L29##i5490001:#Trade 15,000 points (Silver Key)#l#k \n\r #b#L30##i5490000:#Trade 30,000 points (Gold Key)#l\n\r #b#L38##i2530000:#Trade 75,000 points (Lucky Day)#l \n\r #b#L39##i2531000:#Trade 150,000 points (Protection Scroll)#l#k");
    
    
    }
    
    
    function action(mode, type, selection) {
        if (mode == 1) {
        status++;
        if (status == 0) {
        sel = selection;
        switch (selection) {
            case 0:
            case 1:
            case 2:
            case 28:
            cm.sendOk("Please tell those cool Admins to add a lobby.");
            //cm.warp(980010000,0);
            break;
            case 3:
            cm.sendOk("#bCurrent Points : " + points);
            break;
            case 4: // Timeless Blindness
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1492023)) {
                intPoints -= 120000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(1492023, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
            case 5: // Timeless Lampion
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1472068)) {
                intPoints -= 120000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(1472068, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
            case 6: // Timeless Black Beauty
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1462050)) {
                intPoints -= 120000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(1462050, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
            case 7: // Timeless Engaw
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1452057)) {
                intPoints -= 120000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(1452057, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
            case 8: // Timeless Alchupiz
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1432047)) {
                intPoints -= 120000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(1432047, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
            case 9: // Timeless Aeas Hand
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1382057)) {
                intPoints -= 120000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(1382057, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
                case 10: // Timeless Enreal Tear
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1372044)) {
                intPoints -= 120000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(1372044, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
              case 11: // Timeless Killic
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1332074)) {
                intPoints -= 120000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(1332074, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
            case 12: // Timeless Pescas
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1332073)) {
                intPoints -= 120000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(1332073, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
            case 13: // Timeless Equinox
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1482023)) {
                intPoints -= 120000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(1482023, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
            case 14: // Timeless Diesra
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1442063)) {
                intPoints -= 120000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(1442063, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
            case 15: // Timeless Bellocce
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1422037)) {
                intPoints -= 120000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(1422037, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
            case 16: // Timeless Tabarzin
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1412033)) {
                intPoints -= 120000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(1412033, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
            case 17: // Timeless Nibleheim
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1402046)) {
                intPoints -= 120000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(1402046, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
            case 18: // Timeless Allargando
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1322060)) {
                intPoints -= 120000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(1322060, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
            case 19: // Timeless Bardiche
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1312037)) {
                intPoints -= 1312037;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(2049100, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
            case 20: // Timeless Executioners
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1302081)) {
                intPoints -= 120000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(1302081, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;        
            case 21: // Balanced Fury
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 125000) {
                if (cm.canHold(2070018)) {
                intPoints -= 125000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(2070018, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
            case 22: // Fairy Pendant
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 30000) {
                if (cm.canHold(1122017)) {
                intPoints -= 30000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItemPeriod(1122017, 1, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
            case 27:
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 75000) {
                if (cm.canHold(2340000)) {
                intPoints -= 75000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(2340000, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;    
            case 29:
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 15000) {
                if (cm.canHold(5490001)) {
                intPoints -= 15000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(5490001, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;    
            case 30:
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 30000) {
                if (cm.canHold(5490000)) {
                intPoints -= 30000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(5490000, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;    
            case 31: // Timeless Katara
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1342011)) {
                intPoints -= 120000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(1342011, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;    
            case 34: // Obliterator
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 120000) {
                if (cm.canHold(1532015)) {
                intPoints -= 120000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(1532015, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;    
            case 32: //Enchanted Scroll
            var intPoints = parseInt(points);
                if (intPoints < 1000) {
                cm.sendOk("You need at least 1000 points for an Enchanted Scroll.");
                cm.dispose();
                } else {
                cm.sendGetNumber("How many would you like? (1 Enchanted Scroll = 1000 points) (Current Points: " + intPoints + ") (Current Scrolls: " + cm.getPlayer().itemQuantity(5221001) + ")", intPoints / 1000, 1, intPoints / 1000);
                }
            break;
            case 33: //points
            var intPoints = parseInt(points);
                if (!cm.getPlayer().haveItem(5221001)) {
                cm.sendOk("You need at least 1 Enchanted Scroll.");
                cm.dispose();
                } else {
                cm.sendGetNumber("How many would you like to redeem? (1 Enchanted Scroll = 1000 points) (Current Scrolls: " + cm.getPlayer().itemQuantity(5221001) + ") (Current Points: " + intPoints + ")", cm.getPlayer().itemQuantity(5221001), 1, cm.getPlayer().itemQuantity(5221001));
                }
            break;
            case 36: //item
            var intPoints = parseInt(points);
                if (intPoints < 10000) {
                cm.sendOk("You need at least 10000 points for a Bamboo Luck Sack.");
                cm.dispose();
                } else {
                cm.sendGetNumber("How many would you like? (1 Bamboo Luck Sack = 10000 points) (Current Points: " + intPoints + ") (Current:  " + cm.getPlayer().itemQuantity(3993002) + ")", intPoints / 10000, 1, intPoints / 10000);
                }
            break;
            case 37: //points
            var intPoints = parseInt(points);
                if (!cm.getPlayer().haveItem(3993002)) {
                cm.sendOk("You need at least 1 Bamboo Luck Sack.");
                cm.dispose();
                } else {
                cm.sendGetNumber("How many would you like to redeem? (1 Bamboo Luck Sack = 10000 points) (Current: " + cm.getPlayer().itemQuantity(3993002) + ") (Current Points: " + intPoints + ")", cm.getPlayer().itemQuantity(3993002), 1, cm.getPlayer().itemQuantity(3993002));
                }
            break;
            case 38:
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 75000) {
                if (cm.canHold(2530000)) {
                intPoints -= 75000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(2530000, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;    
            case 39:
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 150000) {
                if (cm.canHold(2531000)) {
                intPoints -= 150000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(2531000, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;    
            case 35: // Crystal Ilbi
            var intPoints = parseInt(points);
    
    
            if (intPoints >= 75000) {
                if (cm.canHold(2070016)) {
                intPoints -= 75000;
                cm.setCData("bossQuest", ""+intPoints+"");
                cm.gainItem(2070016, 1);
                cm.sendOk("Enjoy your rewards :P");
                } else {
                cm.sendOk("Please check if you have sufficient inventory slot for it.")
                }
            } else {
                cm.sendOk("Please check if you have sufficient points for it, #bCurrent Points : " + points);
            }
            break;
            case 40:
                cm.warp(219010000,0);
                break;
            case 41:
                cm.warp(219020000,0);
                break;
        }
        } else {
            var intPoints = parseInt(points);
            if (sel == 32) {
            if (selection >= 1 && selection <= (intPoints / 1000)) {
                if (selection > (intPoints / 1000)) {
                    cm.sendOk("You can only get max " + (intPoints / 1000) + " Scrolls. 1 Scroll = 1000 points.");
                } else if (!cm.canHold(5221001, selection)) {
                    cm.sendOk("Please make space in CASH tab.");
                } else {
                    cm.gainItem(5221001, selection);
                    intPoints -= selection * 1000;
                    cm.setCData("bossQuest", ""+intPoints+"");
                    cm.sendOk("You have gained " + selection + " Scrolls and lost " + (selection * 1000) + " points. Current Points: " + intPoints);
                }
            }
            } else if (sel == 33) {
            if (selection >= 1 && selection <= cm.getPlayer().itemQuantity(5221001)) {
                if (intPoints > (2147483647 - (selection * 1000))) {
                    cm.sendOk("You have too many points.");
                } else {
                    cm.gainItem(5221001, -selection);
                    intPoints += selection * 1000;
                    cm.setCData("bossQuest", ""+intPoints+"");
                    cm.sendOk("You have lost " + selection + " Scrolls and gained " + (selection * 1000) + " points. Current Points: " + intPoints);
                }
            } 
            } else if (sel == 36) {
            if (selection >= 1 && selection <= (intPoints / 10000)) {
                if (selection > (intPoints / 10000)) {
                    cm.sendOk("You can only get max " + (intPoints / 10000) + ". 1 Item = 10000 points.");
                } else if (!cm.canHold(3993002, selection)) {
                    cm.sendOk("Please make space in SETUP tab.");
                } else {
                    cm.gainItem(3993002, selection);
                    intPoints -= selection * 10000;
                    cm.setCData("bossQuest", ""+intPoints+"");
                    cm.sendOk("You have gained " + selection + " and lost " + (selection * 10000) + " points. Current Points: " + intPoints);
                }
            }
            } else if (sel == 37) {
            if (selection >= 1 && selection <= cm.getPlayer().itemQuantity(3993002)) {
                if (intPoints > (2147483647 - (selection *10000))) {
                    cm.sendOk("You have too many points.");
                } else {
                    cm.gainItem(3993002, -selection);
                    intPoints += selection * 10000;
                    cm.setCData("bossQuest", ""+intPoints+"");
                    cm.sendOk("You have lost " + selection + " and gained " + (selection * 10000) + " points. Current Points: " + intPoints);
                }
            } 
            }
            cm.dispose();
        }
        }
        if (selection != 32 && selection != 33 && selection != 36 && selection != 37) {
            cm.dispose();
        }
    }
    Last edited by LastAct; 11-04-13 at 09:43 AM.




Advertisement