Advertisement
Guest User

Untitled

a guest
Oct 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. if (GetMapIndex() == 1 && GetLevel() >= 25)
  2. {
  3. return;
  4. }
  5. if (GetMapIndex() == 21 && GetLevel() >= 40)
  6. {
  7. return;
  8. }
  9. if (GetMapIndex() == 3 && GetLevel() >= 25)
  10. {
  11. return;
  12. }
  13. if (GetMapIndex() == 23 && GetLevel() >= 40)
  14. {
  15. return;
  16. }
  17. if (GetMapIndex() == 63 && GetLevel() >= 55)
  18. {
  19. return;
  20. }
  21. if (GetMapIndex() == 68 && GetLevel() >= 75)
  22. {
  23. return;
  24. }
  25. if (GetMapIndex() == 69 && GetLevel() >= 55)
  26. {
  27. return;
  28. }
  29. if (GetMapIndex() == 71 && GetLevel() >= 75)
  30. {
  31. return;
  32. }
  33. if (GetMapIndex() == 81 && GetLevel() >= 55)
  34. {
  35. return;
  36. }
  37. if (GetMapIndex() == 89 && GetLevel() >= 100)
  38. {
  39. return;
  40. }
  41. if (GetMapIndex() == 90 && GetLevel() >= 130)
  42. {
  43. return;
  44. }
  45. if (GetMapIndex() == 91 && GetLevel() >= 150)
  46. {
  47. return;
  48. }
  49. if (GetMapIndex() == 92 && GetLevel() >= 175)
  50. {
  51. return;
  52. }
  53. if (GetMapIndex() == 93 && GetLevel() >= 200)
  54. {
  55. return;
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement