Maple-Explotion

Would you like to react to this message? Create an account in a few clicks or log in to continue.

    [Releases] Crystal ilbi Maker Script

    avatar
    iPlayMsNaked


    Posts : 12
    Points : 36
    Reputation : 0
    Join date : 2009-07-31
    Age : 27
    Location : Kerning

    [Releases] Crystal ilbi Maker Script Empty [Releases] Crystal ilbi Maker Script

    Post by iPlayMsNaked Fri Jul 31, 2009 1:59 pm

    Crystal Ilbi's are forged by John Barricade (at Lobby) by using Crystal Ilbi Forging Manual, 1 Ilbi Throwing-Star, 7 LUK Crystals, and 1 Dark Crystal in GMS.

    Since there's no way to get a Crystal Ilbi on my server. I made 2 npc's.

    First of all you need a Crystal Shard and a Naricain Jewel to trade it for a Crystal Ilbi Forging Manual since it isn't dropped by any monster(You can add it manually too on a monster
    Code:

        } 
        else {   
            if (status >= 2 && mode == 0) {   
                cm.sendOk("Goodbye");   
                cm.dispose();   
                return;   
            }   
             
            if (mode == 1) { 
                status++; 
            }     
            else { 
                status--; 
            } 
             
            if (status == 0) {
          cm.sendNext("Hello, I'm the Crystal Ilbi Forging Manual maker. You need this to make a Crystal Ilbi.");
          cm.dispose();
            }
            else if (status == 1) {
          cm.sendNext ("You need one #i4031917# Crystal Shard and one #i4031758# Narician Jewel to trade it for a Crystal Ilbi Forging Manual. So you're way is shorter to a Crystal Ilbi.");
          cm.dispose();
        }
        else if (status == 1) {
          if(cm.haveItem(4000313) == true){
                             
                            }
                      cm.sendNext("You need the Narician Jewel too, if you got it come to me again and I can give you the Crystal Ilbi Forging Manual since you already have the Crystal Shard.")
          cm.dispose();
          if(cm.haveItem(4000313) == false){
          if(cm.haveItem(4031758) == false){
                             
                            }
                    cm.sendNext("You don't have both of the required items. Please get the required items and come back so I can give you the Crystal Ilbi Forging Manual.")
          cm.dispose();
          if(cm.haveItem(4031758) == true){

                }
                    cm.sendNext("You need the Crystal Shard too, if you got it come back and I'll give you the Crystal Ilbi Forging Manual.")
          cm.dispose();
          if(cm.haveItem(4000313) == true){
          if(cm.haveItem(4031758) == true){
                             
                            }
                    cm.sendNext("You have the Crystal Shard and the Narician Jewel! Good job. By taking those two items, I'm giving you the Crystal Ilbi Forging Manual!");
          cm.gainItem(04031912,1);
          cm.haveItem(4000313,-1);
          cm.haveItem(4031758,-1);
          cm.dispose();
                }
            }
        }

    Now, you got the Crystal Ilbi Forging Manual.
    You need now:

    1 Ilbi Throwing-Star (Dropped by Mushmom, Zombie Mushmom, Lycanthrope, Wolf Spider, Dual Birk, Spirit Viking)
    7 LUK Crystals (Dropped by: Goby)
    1 Dark Crystal(Dropped by: Yeti)

    The following npc takes all the items I just listed AND the Crystal Ilbi Forging Manual. And gives you a Crystal Ilbi.
    Code:

    //Made by Cihad for/from Sixty8Story (Leave credits please
    //Crystal Shard and Naricain Jewel for Crystal Ilbi Forging Manual trader.
    var status = 0; 

    function start() { 
        status = -1; 
        action(1, 0, 0); 


    function action(mode, type, selection) { 
           
        if (mode == -1) { 
            cm.dispose(); 
        } 
        else {   
            if (status >= 2 && mode == 0) {   
                cm.sendOk("Goodbye");   
                cm.dispose();   
                return;   
            }   
             
            if (mode == 1) { 
                status++; 
            }     
            else { 
                status--; 
            } 
             
            if (status == 0) {
          cm.sendNext("Hello, I'm the Crystal Ilbi maker. You need 1 Crystal Ilbi Forging Manual(Dropped by: Crystal Ilbi Forging Manual quest.)\r\n 1 #i2070006# Ilbi Throwing-Star (#kDropped by Mushmom, Zombie Mushmom, Lycanthrope, Wolf Spider, Dual Birk, Spirit Viking#)\r\n 7 #i4005003# LUK Crystals (#kDropped by: Goby#)\r\n and 1 #i4005004# Dark Crystal(#kDropped by: Yeti#)
          cm.dispose();
        if(cm.haveItem(2070006,1) && cm.haveItem(4005003,7) && cm.haveItem(4005004,1){
          cm.sendNext("You have succeed in getting the required items to get a Crystal Ilbi. Enjoy!");
          cm.dispose();
            }
            else if (status == 1) {
          cm.sendNext("You dont have the required items. Please go hunt for it and come back later so I can give you a Crystal Ilbi!");
          cm.dispose();
            }
        }


      Current date/time is Fri May 17, 2024 2:47 am