Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.10 KB | None | 0 0
  1. General = {
  2.     MFList = {}
  3.         --[[ MF List Options :
  4.             Act 1 Bosses = TheCountess, Andariel, TheCowKing
  5.             Act 1 Areas = PitLevel1, PitLevel2, Mausoleum
  6.             Act 2 Bosses = Duriel
  7.             Act 2 Areas = MaggotLairLevel3, AncientTunnels
  8.             Act 3 Bosses = Travincal, Mephisto
  9.             Act 3 Areas = ForgottenTemple, RuinedFane, DisusedReliquary, SewersLevel2Act3
  10.             Act 4 Bosses = Diablo
  11.             Act 4 Areas = RiverOfFlame, ChaosSanctuary
  12.             Act 5 Bosses = ShenkTheOverseer, Pindleskin, NihlathakBoss, Baal
  13.             Act 5 Areas = TheWorldStoneKeepLevel1, TheWorldStoneKeepLevel2, TheWorldStoneKeepLevel3, ThroneOfDestruction
  14.         ]]--
  15.    
  16.     Masters = {}
  17.     ExitOnHostile = true --[[ If set to false, AO will kill hostile players ]]--
  18.     PlayerSquelchLevel = 0 --[[ Players below the squelch level will not be automatically invited to party by AO ]]--
  19.     PublicBot = false --[[ All public bots will talk, specific talk information is held within your build.lua file ]]--
  20. }
  21.  
  22. Character = {
  23.     Build = ""
  24.         --[[ Build Options :
  25.             Amazon = Bowa, Java, Hybrid
  26.             Assassin = Trap, WW
  27.             Barbarian = GoldFind, WW, Zerker
  28.             Druid = Summon, Wind
  29.             Necromancer = Bone, Summon
  30.             Paladin = Hammer, HammerSmiter, Smiter, Zeal
  31.             Sorceress = Blizzard, Fireball, Light, Meteorb, Orb, Tri, Zeal
  32.         ]]--
  33.     RedPotAt = 75
  34.     BluePotAt = 25
  35.     PurplePotAt = 50
  36.     PurplePotForMana = true
  37.     ChickenToTownAt = 35
  38.     ChickenExitAt = 25
  39.     HasMerc = true
  40.     MercRedPotAt = 60
  41.     MercPurplePotAt = 30
  42. }
  43.  
  44. ItemManagement = {
  45.     ChickenOnEmptyPots = false  --[[ This option will only chicken on empty RED potions! ]]--
  46.     MinimumGoldPile = 5000
  47.     PickitFolder = 'Default'
  48.     InventoryLock[1] = {L, L, L, L, L, L, L, L, L, L} --[[ L for Locked, U for Unlocked ]]--
  49.     InventoryLock[2] = {L, L, L, L, L, L, L, L, L, L}
  50.     InventoryLock[3] = {L, L, L, L, L, L, L, L, L, L}
  51.     InventoryLock[4] = {L, L, L, L, L, L, L, L, L, L}
  52.    
  53.     CraftRunes = {} --[[ Enter which runes to create ]]--
  54.     CraftGems = {}  --[[ Enter which types of Gems to create perfect versions of ]]--
  55.    
  56.     GrandCharmRerollLevel = 100 --[[ Collect, Keep, and Reroll Grand Charms of this item level and above (100 to disable)]]--
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement