Advertisement
imodex

Blade Quest

Apr 15th, 2021
10,640
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. _G.endlessmode = true -- Will only run endless mode and will reset dungeon after highest level gear is obtained (or the last area is cleared if lastendlesszone is not false), need to be lvl 25+
  2.  
  3. _G.lastendlesszone = false -- leave false if farming for items and/or not farming xp, otherwise set to a number which will be the last area you will do before you start a new endless run
  4.  
  5. _G.endlessmodelimittest = false -- DO NOT LEAVE ON WHILE AFKING ENDLESS MODE, only meant for pushing the limits of the autofarm in endless mode (for leaderboards and shit)
  6.  
  7. _G.hardestdungeonpossible = true -- Will ignore custom dungeon settings below (except for hardcore) and play highest dungeon possible
  8.  
  9. _G.Hardcore = true -- Should be fine for the most part to keep on, but if for some reason you keep dying while autofarming, set to false temporarily until you no longer die.
  10.  
  11. -- Custom Dungeon Settings
  12.  
  13. _G.Location = "Crystal Mines" -- Locations include Dragon's Den, Toy World, Crystal Mines, Ghost Town, and Forest
  14. _G.Difficulty = "Expert" -- Difficulties include Easy, Medium, Hard, and Expert
  15. _G.Privatelobby = true -- Stops randoms from joining your lobby, keep on to avoid suspision and reports
  16.  
  17. -- Loot Settings
  18.  
  19. _G.AutoSell = true -- Automatically sells gear if it is worse than your current gear (Based on damage and level)
  20.  
  21. _G.KeepLegendaries = true -- Will not sell legendaries if you obtain one
  22.  
  23. _G.KeepMythics = true -- will not sell mythics if you obtain one
  24.  
  25. _G.AutoUpgradeSkill = true -- Automatically puts level up points into damage to increase efficiency of autofarm
  26.  
  27. _G.BuySwords = true -- will buy a rare+ sword of your level if you have the gold for it
  28.  
  29. _G.UpgradeEpics = true -- will keep any epics earned and will merge them into legendaries when possible, not worth keeping on unless you want to collect every legendary
  30.  
  31. _G.UpgradeLegendaries = true -- will keep any legendaries earned and will merge them into mythics when possible, best used super late game (lvl 60+)
  32.  
  33. -- Misc Settings
  34.  
  35. _G.BootlegRainbowBlade = false -- Recreates the Rainbow Blade Gamepass locally (Only you will see it) pure aesthetics only.
  36.  
  37. loadstring(game:HttpGet("https://gist.githubusercontent.com/HomieWithAnExtraChromie/a1b1db9431d10b0be06ab7bbb5e4d591/raw/BladeQuestAutoFarm.lua", true))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement