Advertisement
Guest User

XD

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