Keimu

Dungeon Quest OP AUTOFARM

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