Advertisement
Guest User

Untitled

a guest
May 30th, 2016
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. public boolean isFourthJob() {
  2. if (NoMasterLevel() || id / 1000000 == 92 && (id % 10000 == 0) || NoMasterLevel2() || (id / 10000 == 8000 || id / 10000 == 8001)) {
  3. return false;
  4. }
  5. int jobid = id / 10000;
  6. boolean beginner = isBeginnerSkill();
  7.  
  8. if (beginner || dafqNexon() || id == 42120024 || (jobid / 100 == 112 || jobid == 11000)) {
  9. return false;
  10. }
  11. int v7 = getV7(jobid);
  12. if (GameConstants.isEvan(jobid)) {
  13. if (id == 22171004 || v7 != 9 && v7 != 10 && id != 22111001 && id != 22141002 && id != 22140000)
  14. return false;
  15. } else {
  16. if (!NoMasterLevel3()) {
  17. if (v7 != 4 || GameConstants.isZero(jobid))
  18. return false;
  19. }
  20. }
  21. return true;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement