Advertisement
Guest User

Untitled

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