Advertisement
MLG_Rainbow

Dungeon Quest

Oct 14th, 2019
647
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. --[[
  2. Created by cri.#6558
  3. ]]
  4.  
  5. _G.TOKEN = "070b439d06e80a5f2d530b0664ef96e12b938ff52b87d3e2e94cbaed042385e7"
  6. _G.TimeToWait = 0 -- Increase when your game loads slow
  7. _G.HideOptions = {
  8. Level = true,
  9. XP = true,
  10. Gold = true,
  11. Damage = true -- Removes damage indicators
  12. }
  13. _G.DupeSlot = "q"
  14. _G.InstaRejoin = true -- Directly rejoins when you die or when the dungeon is finished
  15. _G.AutoLeave = 600 -- Time after the script rejoins (if you get stuck)
  16. _G.Hardcore = true
  17. _G.CustomD = {
  18. Enabled = false,
  19. WaveDefense = false,
  20. Dungeon = "Winter Outpost",
  21. Difficulty = "Nightmare"
  22. }
  23. _G.CollectDailyReward = true
  24. _G.InstakillDebounce = 0 -- Time before it instakills
  25. _G.SkillPoints = spellPower-- physicalPower,stamina,spellPower
  26. _G.AutoUpgrade = false -- Auto Upgrades your equipped armor and weapon
  27. _G.AutoEquipClass = "physic" -- physic,spell
  28. _G.AutoEquip = false
  29. _G.AutoSell = {
  30. Enabled = false,
  31. SpellsOnly = false, -- Only spells are going to be sold
  32. Rarities = { -- Rarities to NOT sell (legendary,epic,rare,uncommon,common)
  33. "legendary",
  34. "epic"
  35. },
  36. Items = { -- Items to NOT sell
  37. ["Overlord's Manablade"] = {"legendary"},
  38. ["Overlord's Rageblade"] = {"legendary"},
  39. ["Overlord's Warrior Hat"] = {"epic","rare","uncommon"},
  40. ["Overlord's Warrior Armor"] = {"epic","rare","uncommon"},
  41. ["Overlord's Mage Hat"] = {"epic","rare","uncommon"},
  42. ["Overlord's Mage Robes"] = {"epic","rare","uncommon"},
  43. ["Overlord's Guardian Hat"] = {"epic","rare","uncommon"},
  44. ["Overlord's Guardian Armor"] = {"epic","rare","uncommon"},
  45. ["Bloodthirster"] = {"epic"},
  46. ["Mana Infused Spellblade"] = {"epic"}
  47. }
  48. }
  49. _G.Party = {
  50. Enabled = false, -- true = Waits for members/Joins host; false = Doesnt wait for anyone
  51. Host = "Player1", -- Name of the host
  52. Members = {"Player2","Player3","..."}
  53. }
  54. _G.DEBUG_MODE = false
  55. loadstring(game:HttpGet("https://chronicdev.de/releases/".._G.TOKEN,true))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement