Unused Boss w.Drops and summon command.

Status
Not open for further replies.
Newbie Spellweaver
Joined
Jul 25, 2008
Messages
29
Reaction score
0
Before I started my own private server three days ago I gradually began to notice that a few fun bosses were never being used. Im talking about Mano, Stumpy, King Clang, Tae Roon, Eliza, and the adorable Snowman Yeti.

So here you go ;P I included a .sql that gives each of these boss' their respective ETC drops and all scrolls. I added a bit extra to the Yeti seeing as how he is my favorite. The command is !miniboss but feel free to change it to fit your server, it summons all of the bosses mentioned above.

Enjoy and remember to use the IDs provided to make your own Boss fun.

MiniBoss Command
Code:
}	else if (splitted[0].equals("!miniboss")){
                            MapleMonster mob0 = MapleLifeFactory.getMonster(2220000);
                            MapleMonster mob1 = MapleLifeFactory.getMonster(3220000);
                            MapleMonster mob2 = MapleLifeFactory.getMonster(5220001);
                            MapleMonster mob3 = MapleLifeFactory.getMonster(8220000);
                            MapleMonster mob4 = MapleLifeFactory.getMonster(7220000);
                            MapleMonster mob5 = MapleLifeFactory.getMonster(8220001);
                            c.getPlayer().getMap().spawnMonsterOnGroudBelow(mob0, c.getPlayer().getPosition());
                            c.getPlayer().getMap().spawnMonsterOnGroudBelow(mob1, c.getPlayer().getPosition());
                            c.getPlayer().getMap().spawnMonsterOnGroudBelow(mob2, c.getPlayer().getPosition());
                            c.getPlayer().getMap().spawnMonsterOnGroudBelow(mob3, c.getPlayer().getPosition());
                            c.getPlayer().getMap().spawnMonsterOnGroudBelow(mob4, c.getPlayer().getPosition());
                            c.getPlayer().getMap().spawnMonsterOnGroudBelow(mob5, c.getPlayer().getPosition());

Insert this somewhere into your CommandProccessor.java.




ebilme - Unused Boss w.Drops and summon command. - RaGEZONE Forums
 
Re: [Release] Unused Boss w.Drops and summon command.

Thanks for Monster codes. I just made a custom boss with one.

-I might even use this command as base to spawn some other stuff.
 
Status
Not open for further replies.
Back