probanana

Dungeon Quest Autofarm

Feb 23rd, 2023
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.78 KB | None | 0 0
  1. _G.teleportDuringBossOnly = true -- if true, only use smallTeleports when its time for a boss
  2. _G.doInstakill = true
  3.  
  4. -- AI Visual Settings
  5. _G.showTarget = true -- this will highlight each target in a red box
  6. _G.showPath = true
  7.  
  8. -- AI Performance
  9. _G.extremelyFast = true -- makes the ai think exponentially faster, but might lag for people
  10.  
  11. -- Lobby Settings
  12. _G.maxWaitTimeInLobby = 0 -- this is how long itll randomly walk around for before going into a dungeon
  13. _G.collect_daily_reward = false
  14.  
  15. -- Dungeon Choosing Settings
  16. _G.auto_join_dungeon = true
  17. _G.dungeon = nil
  18. _G.difficulty = nil
  19. _G.hardcore = true -- hardcore mode
  20. _G.auto_choose_dungeon_and_difficulty = true -- if true, then script auto choose dungeon and difficulty for your lvl
  21. _G.autoexec_wait_time_secs = 3
  22.  
  23. -- Boss Raid Settings
  24. _G.boss_raid = false
  25. _G.auto_choose_raid_boss_tier = true
  26. _G.boss_raid_tier = 1
  27.  
  28. -- Wave Defense Settings
  29. _G.wavedefense = false -- wave defense
  30.  
  31. -- Easter Event Settings
  32. _G.easter_enable = false
  33. _G.eggClass = "Mage"
  34.  
  35. -- Party Settings
  36. -- Hosting Settings
  37. _G.wait_for_friends = false
  38. _G.friends = {"Friend 1", "Friend 2"}
  39.  
  40. -- Joining Settings
  41. _G.wait_for_friends_to_host = false
  42. _G.host_name = "Name of the host"
  43.  
  44. -- Multi-Instance Settings
  45. _G.multi_roblox = false
  46. _G.host_name_key = {"acc"} -- this account creates parties
  47. _G.name_key_list = {
  48. {"acc"},
  49. }
  50.  
  51. -- Autosell Settings
  52. _G.autosell = false
  53. _G.testSell = false -- prints out what items would've been sold instead of selling the items
  54. _G.keep_items_level_requirement = 156 -- keeps items that level requirements are above this number
  55. _G.keep2spells = false -- sell spells extra spells if you have 2 already
  56. _G.keep_items_from_class = {
  57. ["physical"] = false,
  58. ["mage"] = false,
  59. } --[[ only keeps items that fall within the given class ]]
  60. _G.keeprarities = {
  61. ['legendary'] = true,
  62. ['epic'] = false,
  63. ['rare'] = false,
  64. ['uncommon'] = false,
  65. ['common'] = false,
  66. }
  67. _G.itemlist ={
  68.  
  69. --Volcanic Chambers Armor
  70. ["Lava King's Warrior Helmet"] = {"rare","epic"},
  71. ["Lava King's Warrior Armor"] = {"rare","epic"},
  72. ["Lava King's Mage Helmet"] = {"rare","epic"},
  73. ["Lava King's Mage Armor"] = {"rare","epic"},
  74. -- Warrior Skills,
  75. ["Enhanced Inner Rage"] = {"legendary"},
  76. -- Others
  77. ["Enchanted Serpent Daggers"] = {"rare","epic"},
  78. ["Oceanic Greatsword"] = {"rare","epic"},
  79. ["Spear Strike"] = {"rare"},
  80. ["Water Orb"] = {"rare"},
  81. ["Ice Barrage"] = {"epic"},
  82. ["Ice Crash"] = {"epic"},
  83. ["Aquatic Smite"] = {"epic"},
  84. ["Ice Spikes"] = {"epic"},
  85. ["Triton Warrior Helmet"] = {"rare","epic","uncommon"},
  86. ["Triton Warrior Armor"] = {"rare","epic","uncommon"},
  87. ["Triton Mage Armor"] = {"rare","epic","uncommon"},
  88. ["Triton Mage Helmet"] = {"rare","epic","uncommon"},
  89. ["Triton Guardian Helmet"] = {"rare","epic"},
  90. ["Triton Guardian Armor"] = {"rare","epic"},
  91.  
  92. }
  93.  
  94. -- Auto Upgrade Settings
  95. _G.auto_stat_upgrade = false -- auto upgrade stats
  96. _G.stat = "physicalPower" -- selected stat
  97. _G.auto_equip_gear = false
  98. _G.equip_type = "spell" -- "physical", "spell"
  99. _G.auto_upgrade_equip = false
  100. _G.autoEquipSpell = false
  101. _G.spellType = "spell" -- "physical", "spell"
  102.  
  103. -- ANTI LAG SETTINGS
  104. _G.wall_transparency = .5
  105. _G.optimize_mobs = true
  106. _G.destroy_map = true
  107. _G.del_armor= true
  108. _G.del_weapon = true
  109. _G.hide_projectiles = true
  110. _G.loadSlow = false
  111. _G.fpsBoost = true
  112.  
  113. -- UI Settings
  114. _G.edit_ui = false
  115. _G.UI_portait_image = 'rbxassetid://3157197640'
  116. _G.UI_health = "Peanut"
  117. _G.UI_money = "Peanut"
  118. _G.UI_name = "Peanut Quest"
  119. _G.UI_xp = "66"
  120. _G.UI_lvl = "33"
  121.  
  122. -- Discord Webhook
  123. _G.webhookEnabled = false
  124. _G.webhookLink = nil -- your webhook
  125. loadstring(game:HttpGet(('https://raw.githubusercontent.com/PeanutQuest/PeanutQuestBeta/main/Release.lua'),true))()
Add Comment
Please, Sign In to add comment