Thanks.
You can also do this when you click the CS button.. :O
Printable View
Thanks.
You can also do this when you click the CS button.. :O
it works 4 me but ive had this
You didn't help me at all. I programmed this from my own knowledge. Anyway, the structure of mine and yours is different.
Mine is:
I personally find you similar to Adog. And you know, I really hate people who call me leecher because the code you first posted FAILED!Code:if (this.getLevel()==30 && job == MapleJob.MAGICIAN) {
NPCScriptManager.getInstance().start(getClient(), 1032001);
} else if (this.getLevel()==30 && job == MapleJob.THIEF) {
NPCScriptManager.getInstance().start(getClient(), 1052001);
} else if (this.getLevel()==30 && job == MapleJob.BOWMAN) {
NPCScriptManager.getInstance().start(getClient(), 1012100);
} else if (this.getLevel()==30 && job == MapleJob.WARRIOR) {
NPCScriptManager.getInstance().start(getClient(), 1022000);
} else if (this.getLevel()==30 && job == MapleJob.PIRATE) {
NPCScriptManager.getInstance().start(getClient(), 2100);
} else if (this.getLevel()==70 && (job == MapleJob.SPEARMAN || job == MapleJob.PAGE || job == MapleJob.FIGHTER)) {
NPCScriptManager.getInstance().start(getClient(), 2020008);
} else if (this.getLevel()==70 && (job == MapleJob.CLERIC || job == MapleJob.FP_WIZARD || job == MapleJob.IL_WIZARD)) {
NPCScriptManager.getInstance().start(getClient(), 2020009);
} else if (this.getLevel()==70 && (job == MapleJob.CROSSBOWMAN || job == MapleJob.HUNTER)) {
NPCScriptManager.getInstance().start(getClient(), 2020010);
} else if (this.getLevel()==70 && (job == MapleJob.ASSASSIN || job == MapleJob.BANDIT)) {
NPCScriptManager.getInstance().start(getClient(), 2020011);
} else if (this.getLevel()==70 && (job == MapleJob.GUNSLINGER || job == MapleJob.INFIGHTER)) {
NPCScriptManager.getInstance().start(getClient(), 2100);
} else if (this.getLevel()==120 && (job == MapleJob.CRUSADER || job == MapleJob.WHITEKNIGHT || job == MapleJob.DRAGONKNIGHT)) {
NPCScriptManager.getInstance().start(getClient(), 2020008);
} else if (this.getLevel()==120 && (job == MapleJob.PRIEST || job == MapleJob.FP_MAGE || job == MapleJob.IL_MAGE)) {
NPCScriptManager.getInstance().start(getClient(), 2020009);
} else if (this.getLevel()==120 && (job == MapleJob.SNIPER || job == MapleJob.RANGER)) {
NPCScriptManager.getInstance().start(getClient(), 2020010);
} else if (this.getLevel()==120 && (job == MapleJob.HERMIT || job == MapleJob.CHIEFBANDIT)) {
NPCScriptManager.getInstance().start(getClient(), 2020011);
} else if (this.getLevel()==120 && (job == MapleJob.BUCCANEER || job == MapleJob.VALKYRIE)) {
NPCScriptManager.getInstance().start(getClient(), 2100);
}
Anyway, I didn't say this could'nt be posted in Ragezone.