Advertisement
Guest User

Untitled

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