Guest User

Dungeon quest

a guest
Aug 17th, 2019
2,571
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 = "a2c940c18e15e666772aa472d0923c21cc300effd2979595bb9f5c63a816cf1b" -- Version token can be found in #dq-scripts
  2. _G.TimeToWait = 1.25-- Increase when your game loads slow
  3. _G.HideDamage = true
  4. _G.HideOptions = {
  5. Name = true,
  6. Level = false,
  7. XP = false,
  8. Gold = false
  9. }
  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 = "The Underworld",
  18. Difficulty = "Nightmare"
  19. }
  20. _G.DupeSlot = "e" -- Slots: e,q
  21. _G.SkillPoints = "physicalPower" -- physicalPower,stamina,spellPower
  22. _G.AutoUpgrade = false -- Auto Upgrades your equipped armor and weapon
  23. _G.AutoEquipClass = "spell" -- physic,spell
  24. _G.AutoEquip = false
  25. _G.CollectDailyReward = true -- Auto collect daily reward
  26. _G.InstakillDebounce = 1.25 -- Time before it instakills
  27. _G.AutoSell = {
  28. Enabled = false,
  29. SpellsOnly = false, -- Only spells are going to be sold
  30. Rarities = { -- Rarities to NOT sell (legendary,epic,rare,uncommon,common)
  31. "legendary",
  32. "epic"
  33. },
  34. Items = { -- Items to NOT sell
  35. ["Overlord's Manablade"] = {"legendary"},
  36. ["Overlord's Rageblade"] = {"legendary"},
  37. ["Overlord's Warrior Hat"] = {"epic","rare","uncommon"},
  38. ["Overlord's Warrior Armor"] = {"epic","rare","uncommon"},
  39. ["Overlord's Mage Hat"] = {"epic","rare","uncommon"},
  40. ["Overlord's Mage Robes"] = {"epic","rare","uncommon"},
  41. ["Overlord's Guardian Hat"] = {"epic","rare","uncommon"},
  42. ["Overlord's Guardian Armor"] = {"epic","rare","uncommon"},
  43. ["Bloodthirster"] = {"epic"},
  44. ["Mana Infused Spellblade"] = {"epic"}
  45. }
  46. }
  47. loadstring(game:HttpGet("https://chronicdev.de/releases/".._G.TOKEN,true))()
Add Comment
Please, Sign In to add comment