Advertisement
anhhahs

list map

Dec 10th, 2019
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. --[[
  2. == MAPS ==
  3. The Retro City - 1
  4. The Factory - 2
  5. The Firelands - 3
  6. == DIFFICULTIES ==
  7. Easy - 1
  8. Medium - 2
  9. Hard - 3
  10. Very Hard - 4
  11. Extreme - 5
  12. == NOTES ==
  13. auto sell will sell everything thats not equipped
  14. settings them as favourite will prevent them from being sold
  15. firelands use 1-3, not 3-5
  16. ]]
  17.  
  18. local getservice = game:GetService("Players")
  19. local lvlmyplayer = getservice.LocalPlayer.PlayerData.Level.Value
  20.  
  21. if lvlmyplayer >= 1 and lvlmyplayer <= 5 then
  22. mappa = 1
  23. difficolta = 1
  24. end
  25. if lvlmyplayer >= 6 and lvlmyplayer <= 11 then
  26. mappa = 1
  27. difficolta = 2
  28. end
  29. if lvlmyplayer >= 12 and lvlmyplayer <= 17 then
  30. mappa = 1
  31. difficolta = 3
  32. end
  33. if lvlmyplayer >= 18 and lvlmyplayer <= 23 then
  34. mappa = 1
  35. difficolta = 4
  36. end
  37. if lvlmyplayer >= 24 and lvlmyplayer <= 29 then
  38. mappa = 1
  39. difficolta = 5
  40. end
  41. if lvlmyplayer >= 30 and lvlmyplayer <= 35 then
  42. mappa = 2
  43. difficolta = 1
  44. end
  45. if lvlmyplayer >= 36 and lvlmyplayer <= 41 then
  46. mappa = 2
  47. difficolta = 2
  48. end
  49. if lvlmyplayer >= 42 and lvlmyplayer <= 47 then
  50. mappa = 2
  51. difficolta = 3
  52. end
  53. if lvlmyplayer >= 48 and lvlmyplayer <= 53 then
  54. mappa = 2
  55. difficolta = 4
  56. end
  57. if lvlmyplayer >= 54 and lvlmyplayer <= 59 then
  58. mappa = 2
  59. difficolta = 5
  60. end
  61. if lvlmyplayer >= 60 and lvlmyplayer <= 63 then
  62. mappa = 3
  63. difficolta = 1
  64. end
  65. if lvlmyplayer >= 64 and lvlmyplayer <= 67 then
  66. mappa = 3
  67. difficolta = 2
  68. end
  69. if lvlmyplayer >= 68 and lvlmyplayer <= 71 then
  70. mappa = 3
  71. difficolta = 3
  72. end
  73. if lvlmyplayer >= 72 and lvlmyplayer <= 76 then
  74. mappa = 3
  75. difficolta = 4
  76. end
  77. if lvlmyplayer >= 77 and lvlmyplayer <= 82 then
  78. mappa = 4
  79. difficolta = 1
  80. end
  81. if lvlmyplayer >= 83 and lvlmyplayer <= 88 then
  82. mappa = 4
  83. difficolta = 2
  84. end
  85. if lvlmyplayer >= 89 and lvlmyplayer <= 94 then
  86. mappa = 4
  87. difficolta = 3
  88. end
  89. if lvlmyplayer >= 95 and lvlmyplayer <= 100 then
  90. mappa = 4
  91. difficolta = 4
  92. end
  93. if lvlmyplayer >= 101 then
  94. mappa = 4
  95. difficolta = 5
  96. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement