Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 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 = fale,
  9. XP = false,
  10. Gold = false,
  11. Damage = true -- Removes damage indicators
  12. }
  13. _G.DupeSlot = "q"
  14. _G.InstaRejoin = true -- 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 = "Winter Outpost",
  21. Difficulty = "Nightmare"
  22. }
  23. _G.CollectDailyReward = false
  24. _G.InstakillDebounce = 0 -- Time before it instakills
  25. _G.SkillPoints = "physicalPower" -- physicalPower,stamina,spellPower
  26. _G.AutoUpgrade = false -- Auto Upgrades your equipped armor and weapon
  27. _G.AutoEquipClass = "physic" -- 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. Items = { -- Items to NOT sell
  36. ["Industrial Warrior Armor"] = {"epic"},
  37. ["Industrial Warrior Helmet"] = {"epic"},
  38. ["Industrial Mage Armor"] = {"epic"},
  39. ["Industrial Mage Helmet"] = {"epic",},
  40. ["War-Forged Warrior Armor"] = {"epic","rare","uncommon"},
  41. ["War-Forged Warrior Helmet"] = {"epic","rare","uncommon"},
  42. ["War-Forged Mage Armor"] = {"epic","rare","uncommon"},
  43. ["War-Forged Mage Helmet"] = {"epic","rare","uncommon"},
  44. ["Mighty Fusion Maul"] = {"epic","rare"},
  45. ["Mighty Fusion Spellblade"] = {"epic","rare"},
  46. ["Chained Energy Blast"] = {"rare"},
  47. }
  48. }
  49. _G.Party = {
  50. Enabled = false, -- true = Waits for members/Joins host; false = Doesnt wait for anyone
  51. Host = "Player1", -- Name of the host
  52. Members = {"Player2","Player3","..."}
  53. }
  54. _G.DEBUG_MODE = false
  55. loadstring(game:HttpGet("https://chronicdev.de/releases/".._G.TOKEN,true))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement