Guest User

ZED22

a guest
Aug 17th, 2019
114
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 = true -- 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 = {"Player1","..."}
  14. _G.Hardcore = true
  15. _G.CustomD = {
  16. Enabled = false,
  17. Dungeon = "King's Castle",
  18. Difficulty = "Nightmare"
  19. }
  20. _G.LoopJoin = true -- Attempts to join a dungeon each 0.1 seconds
  21. _G.CollectDailyReward = true
  22. _G.InstakillDebounce = 0.25 -- Time before it instakills
  23. _G.DupeSlot = "e" -- Slots: e,q
  24. _G.SkillPoints = "physicalPower" -- physicalPower,stamina,spellPower
  25. _G.AutoUpgrade = true -- Auto Upgrades your equipped armor and weapon
  26. _G.AutoEquipClass = "physic" -- physic,spell
  27. _G.AutoEquip = true
  28. _G.AutoSell = {
  29. Enabled = true,
  30. SpellsOnly = true, -- Only spells are going to be sold
  31. Rarities = { -- Rarities to NOT sell (legendary,epic,rare,uncommon,common)
  32. "legendary",
  33. "epic"
  34. },
  35. Items = { -- Items to NOT sell
  36. ["Overlord's Manablade"] = {"legendary"},
  37. ["Overlord's Rageblade"] = {"legendary"},
  38. ["Overlord's Warrior Hat"] = {"epic","rare","uncommon"},
  39. ["Overlord's Warrior Armor"] = {"epic","rare","uncommon"},
  40. ["Overlord's Mage Hat"] = {"epic","rare","uncommon"},
  41. ["Overlord's Mage Robes"] = {"epic","rare","uncommon"},
  42. ["Overlord's Guardian Hat"] = {"epic","rare","uncommon"},
  43. ["Overlord's Guardian Armor"] = {"epic","rare","uncommon"},
  44. ["Bloodthirster"] = {"epic"},
  45. ["Mana Infused Spellblade"] = {"epic"}
  46. }
  47. }
  48. loadstring(game:HttpGet("https://chronicdev.de/releases/".._G.TOKEN,true))()
Add Comment
Please, Sign In to add comment