Guest User

cheat

a guest
Aug 23rd, 2019
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. _G.TOKEN = "latest" -- Version token can be found in #dq-scripts
  2. _G.TimeToWait = 0 -- Increase when your game loads slow
  3. _G.HideOptions = {
  4. Name = true,
  5. Level = true,
  6. XP = true,
  7. Gold = true
  8. }
  9. _G.HideDamage = true -- Removes damage indicators
  10. _G.InstaRejoin = false -- Directly rejoins when you die or when the dungeon is finished
  11. _G.AutoLeave = 600 -- Time after the script rejoins (if you get stuck)
  12. _G.WaitForPlayers = false -- Wait for specific players (specify below)
  13. _G.PlayersToWaitFor = {}
  14. _G.Hardcore = true
  15. _G.CustomD = {
  16. Enabled = false,
  17. WaveDefense = false,
  18. Dungeon = "The Canals",
  19. Difficulty = "Hard"
  20. }
  21. _G.LoopJoin = true -- Attempts to join a dungeon each 0.1 seconds
  22. _G.CollectDailyReward = true
  23. _G.InstakillDebounce = 0 -- Time before it instakills
  24. _G.DupeSlot = "q" -- Slots: e,q
  25. _G.SkillPoints = "physicalPower" -- physicalPower,stamina,spellPower
  26. _G.AutoUpgrade = true -- Auto Upgrades your equipped armor and weapon
  27. _G.AutoEquipClass = "physic" -- physic,spell
  28. _G.AutoEquip = true
  29. _G.AutoSell = {
  30. Enabled = true,
  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. loadstring(game:HttpGet("https://chronicdev.de/releases/".._G.TOKEN,true))()
Add Comment
Please, Sign In to add comment