Advertisement
MRobbin99

current settings

Oct 1st, 2020
917
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. -- Whitelist
  2. _G.Key = "KEY"
  3.  
  4. -- AI Settings
  5. -- AI Behavioral Settings
  6. _G.abilityRange = 65 -- the target must be atleast 65 studs away before using abilities
  7. _G.bossRange = 65 -- this is how far away the bot will try stay away from bosses (best setting is to set this to the same value as ability range)
  8. _G.mobRange = 20 -- this is how far away the bot will try to stay away from mobs
  9. -- AI Visual Settings
  10. _G.showPath = true -- this will display spheres indicating the path the bot is trying to take
  11. _G.showTarget = true -- this will highlight each target in a red box
  12.  
  13. -- Lobby Settings
  14. _G.maxWaitTimeInLobby = 5 -- this is how long itll randomly walk around for before going into a dungeon
  15. _G.collect_daily_reward = true
  16.  
  17. -- Dungeon Choosing Settings
  18. -- Normal Dungeon Settings
  19. _G.auto_join_dungeon = true
  20. _G.dungeon = "Steampunk Sewers"
  21. _G.difficulty = "Nightmare"
  22. _G.auto_choose_dungeon_and_difficulty = true
  23. _G.autoexec_wait_time_secs = 0
  24.  
  25. -- Boss Raid Settings
  26. _G.boss_raid = false
  27. _G.auto_choose_raid_boss_tier = true
  28. _G.boss_raid_tier = 1
  29. _G.ability_key = "e"
  30.  
  31. -- Wave Defense Settings
  32. _G.wavedefense = false
  33.  
  34. -- Easter Event Settings
  35. _G.easter_enable = false
  36. _G.eggClass = "Mage"
  37.  
  38. -- Party Settings
  39. -- Hosting Settings
  40. _G.wait_for_friends = false
  41. _G.friends = {"Friend 1", "Friend 2"}
  42.  
  43. -- Joining Settings
  44. _G.wait_for_friends_to_host = false
  45. _G.host_name = "Name of the host"
  46.  
  47. -- Multi-Instance Settings
  48. _G.multi_roblox = false
  49. _G.host_name_key = {"0017", "key for that account"} -- this account creates parties
  50. _G.name_key_list = { {"fleebmans", "Account 2 key"} }
  51.  
  52. -- Autosell Settings
  53. _G.autosell = true
  54. _G.keeprarities = {"legendary", "epic"}
  55. _G.itemlist ={
  56.  
  57. }
  58.  
  59. -- Auto Upgrade Settings
  60. _G.auto_stat_upgrade = true
  61. _G.stat = "physicalPower" -- "physicalPower", "stamina", "spellPower"
  62. _G.auto_equip_gear = true
  63. _G.equip_type = "physical" -- "physical", "spell"
  64. _G.auto_upgrade_equip = true
  65.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement