public boolean receivePartTimeReward() { if (getPlayer().getPartTimeId() >= 0 || getPlayer().getPartTimeStart() >= -10) { return false; } int oldId = -getPlayer().getPartTimeId(); int hoursDone = -((int) getPlayer().getPartTimeStart() + 10); int extraChance = hoursDone * 5; if ((getPlayer().getProfessionLevel(92000000) > 0 && oldId == 2) || (getPlayer().getProfessionLevel(92010000) > 0 && oldId == 3)) { // Herbalism / Mining extraChance += 5; // extra 5% } // dexterity potion and scroll for int //elixer 24 ->The fruits of labors are always sweet. I hope to see you again. switch (oldId) { case 1: // rest //EXP Buffs //You can receive various buffs that will aid you in battle. As a special reward, you can receive additional EXP benefit. break; case 2: // herbalism //Chance of obtaining rare recipes. //You can obtain various herbs. As a special reward, you care obtain rare recipes. break; case 3: // mining //Chance of obtaining rare equipment/accessory recipes. //You can receive various ores needed for equipment forging. As a special reward, you can receive rare equipment/accessory recipes. break; case 4: // general store //Chance of obtaining various scrolls. //You obtain various potion-type items. As a special reward, you can receive various scrolls. break; case 5: // weapon/armor store //Chance of obtaining random equipment items. //You can obtain various potions and other consumable items. You can obtain equipment items at random. break; } return true; }