karobloxYT

Untitled

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