Secret Monster Training Zone :- Mage Arena
Step1 :- Open Up Autospawn.cfg And Add These Lines
Code:
spawn = 2745 3112 3935 0 3115 3938 3109 3932 1 STZ - Jad
spawn = 1264 3104 3929 0 3107 3932 3101 3926 1 STZ - Sara Wizard
spawn = 1007 3102 3929 0 3105 3932 3099 3926 1 STZ - Zammy Wizard
spawn = 1626 3099 3936 0 3102 3939 3096 3933 1 STZ - Turoth
Save And Close Autospawn..
Step2 :- Open Up Npc.cfg And Search For These Monsters:-
Code:
1264
2745
1626
1007
Step3:- Open Up Item2.Java And Add These
Code:
public static int jad[] = {1419,6570,6570,6570,6570,6570,3141,6570,6570,6570,6570,6570};
public static int randomjad()
{
return jad[(int)(Math.random()*jad.length)];
}
public static int turoth[] = {4827,4214,4151,4131,6570};
public static int randomturoth()
{
return turoth[(int)(Math.random()*turoth.length)];
}
public static int wizard[] = {2416,2418,2415};
public static int randomwizard()
{
return wizard[(int)(Math.random()*wizard.length)];
}
Step4:- Open Up NpcHandler.java And Search For KBD And Add These In The Correct Place
Code:
if(npcs[NPCID].npcType == 2745) {
ItemHandler.addItem(Item2.randomjad(), npcs[NPCID].absX, npcs[NPCID].absY, 1, GetNpcKiller(NPCID), false);
}
if(npcs[NPCID].npcType == 1626) {
ItemHandler.addItem(Item2.randomturoth(), npcs[NPCID].absX, npcs[NPCID].absY, 1, GetNpcKiller(NPCID), false);
}
if(npcs[NPCID].npcType == 1264) {
ItemHandler.addItem(Item2.randomwizard(), npcs[NPCID].absX, npcs[NPCID].absY, 1, GetNpcKiller(NPCID), false);
}
if(npcs[NPCID].npcType == 1007) {
ItemHandler.addItem(Item2.randomwizard(), npcs[NPCID].absX, npcs[NPCID].absY, 1, GetNpcKiller(NPCID), false);
}
Save,Compile,Run.. Gives A Little Zone To Fight Monsters At As Long As It Isn't Already In Use