Guest User

Untitled

a guest
Aug 4th, 2015
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.35 KB | None | 0 0
  1. // Paladin config file
  2.  
  3. /* Brief instructions:
  4. * Notepad++ is HIGHLY recommended to use for editing these files. Visit http://notepad-plus-plus.org/
  5. * To comment out something, put // in front of that line
  6. * !!!Never comment out something you're not sure about, set it to false or disable as noted in description if you don't want to use it.
  7. * true and false are case sensitive. Good: Config.SomeVar = true; Bad: Config.SomeVar = True;
  8. */
  9.  
  10. function LoadConfig() {
  11. /* Sequence config
  12. * Set to true if you want to run it, set to false if not.
  13. * If you want to change the order of the scripts, just change the order of their lines by using cut and paste.
  14. */
  15.  
  16. // User addon script. Read the description in libs/bots/UserAddon.js
  17. Scripts.UserAddon = false; // !!!YOU MUST SET THIS TO FALSE IF YOU WANT TO RUN BOSS/AREA SCRIPTS!!!
  18.  
  19. // Battle orders script - Use this for 2+ characters (for example BO barb + sorc)
  20. Scripts.BattleOrders = true;
  21. Config.BattleOrders.Mode = 0; // 0 = give BO, 1 = get BO
  22. Config.BattleOrders.Wait = false; // Idle until the player that received BO leaves.
  23. Config.BattleOrders.Getters = []; // List of players to wait for before casting Battle Orders (mode 0). All players must be in the same area as the BOer.
  24.  
  25. // Team MF system
  26. Config.MFLeader = false; // Set to true if you have one or more MFHelpers. Opens TP and gives commands when doing normal MF runs.
  27.  
  28. // Boss/area scripts
  29.  
  30. // *** act 1 ***
  31. Scripts.Corpsefire = false;
  32. Config.Corpsefire.ClearDen = false;
  33. Scripts.Mausoleum = false;
  34. Config.Mausoleum.KillBloodRaven = false;
  35. Config.Mausoleum.ClearCrypt = false;
  36. Scripts.Rakanishu = false;
  37. Config.Rakanishu.KillGriswold = true;
  38. Scripts.UndergroundPassage = false;
  39. Scripts.Coldcrow = false;
  40. Scripts.Tristram = false;
  41. Config.Tristram.PortalLeech = false; // Set to true to open a portal for leechers.
  42. Scripts.Pit = false;
  43. Config.Pit.ClearPit1 = true;
  44. Scripts.Treehead = false;
  45. Scripts.Smith = false;
  46. Scripts.BoneAsh = false;
  47. Scripts.Countess = false;
  48. Config.Countess.KillGhosts = false;
  49. Scripts.Andariel = false;
  50. Scripts.Cows = false;
  51.  
  52. // *** act 2 ***
  53. Scripts.Radament = false;
  54. Scripts.Coldworm = false;
  55. Config.Coldworm.KillBeetleburst = false;
  56. Config.Coldworm.ClearMaggotLair = false; // Clear all 3 levels
  57. Scripts.AncientTunnels = false;
  58. Config.AncientTunnels.OpenChest = false; // Open special chest in Lost City
  59. Config.AncientTunnels.KillDarkElder = false;
  60. Scripts.Summoner = false;
  61. Config.Summoner.FireEye = false;
  62. Scripts.Tombs = false;
  63. Scripts.Duriel = false;
  64.  
  65. // *** act 3 ***
  66. Scripts.Stormtree = false;
  67. Scripts.KurastTemples = false;
  68. Scripts.Icehawk = false;
  69. Scripts.Endugu = false;
  70. Scripts.Travincal = false;
  71. Config.Travincal.PortalLeech = false; // Set to true to open a portal for leechers.
  72. Scripts.Mephisto = false;
  73. Config.Mephisto.MoatTrick = false;
  74. Config.Mephisto.KillCouncil = false;
  75. Config.Mephisto.TakeRedPortal = true;
  76.  
  77. // *** act 4 ***
  78. Scripts.OuterSteppes = false;
  79. Scripts.Izual = false;
  80. Scripts.Hephasto = false;
  81. Scripts.Vizier = false; // Intended for classic sorc, kills Vizier only.
  82. Scripts.FastDiablo = false;
  83. Scripts.Diablo = false;
  84. Config.Diablo.Entrance = true; // Start from entrance
  85. Config.Diablo.SealWarning = "Leave the seals alone!";
  86. Config.Diablo.EntranceTP = "Entrance TP up";
  87. Config.Diablo.StarTP = "Star TP up";
  88. Config.Diablo.DiabloMsg = "Diablo";
  89.  
  90. // *** act 5 ***
  91. Scripts.Pindleskin = false;
  92. Config.Pindleskin.UseWaypoint = false;
  93. Config.Pindleskin.KillNihlathak = true;
  94. Config.Pindleskin.ViperQuit = false; // End script if Tomb Vipers are found.
  95. Scripts.Nihlathak = false;
  96. Config.Nihlathak.ViperQuit = false; // End script if Tomb Vipers are found.
  97. Scripts.Eldritch = false;
  98. Config.Eldritch.OpenChest = true;
  99. Config.Eldritch.KillShenk = true;
  100. Config.Eldritch.KillDacFarren = true;
  101. Scripts.Eyeback = false;
  102. Scripts.SharpTooth = false;
  103. Scripts.ThreshSocket = false;
  104. Scripts.Abaddon = false;
  105. Scripts.Frozenstein = false;
  106. Config.Frozenstein.ClearFrozenRiver = true;
  107. Scripts.Bonesaw = false;
  108. Config.Bonesaw.ClearDrifterCavern = false;
  109. Scripts.Snapchip = false;
  110. Config.Snapchip.ClearIcyCellar = true;
  111. Scripts.Worldstone = false;
  112. Scripts.Baal = false;
  113. Config.Baal.HotTPMessage = "Hot TP!";
  114. Config.Baal.SafeTPMessage = "Safe TP!";
  115. Config.Baal.BaalMessage = "Baal!";
  116. Config.Baal.SoulQuit = false; // End script if Souls (Undead Soul Killers) are found.
  117. Config.Baal.DollQuit = false; // End script if Dolls (Undead Stigyan Dolls) are found.
  118. Config.Baal.KillBaal = true; // Kill Baal. Leaves game after wave 5 if false.
  119.  
  120. /* ### leeching section ###
  121. * Unless stated otherwise, leader's character name isn't needed on order to run.
  122. * Don't use more scripts of the same type! (Run AutoBaal OR BaalHelper, not both)
  123. */
  124.  
  125. Config.Leader = ""; // Leader's ingame character name. Leave blank to try auto-detection (works in AutoBaal, Wakka, MFHelper)
  126. Config.QuitList = [""]; // List of character names to quit with. Example: Config.QuitList = ["MySorc", "MyDin"];
  127.  
  128. Scripts.TristramLeech = false; // Enters Tristram, attempts to stay close to the leader and will try and help kill.
  129. Scripts.TravincalLeech = false; // Enters portal at back of Travincal.
  130. Config.TravincalLeech.Helper = true; // If set to true the character will teleport to the stairs and help attack.
  131. Scripts.MFHelper = false; // Run the same MF run as the MFLeader. Leader must have Config.MFLeader = true
  132. Scripts.Wakka = false; // Walking chaos leecher with auto leader assignment, stays at safe distance from the leeader
  133. Scripts.DiabloHelper = false; // Chaos helper, kills monsters and doesn't open seals on its own.
  134. Config.DiabloHelper.Wait = 120; // Seconds to wait for a runner to be in Chaos
  135. Config.DiabloHelper.Entrance = true; // Start from entrance
  136. Scripts.AutoBaal = false; // Baal leecher with auto leader assignment
  137. Config.AutoBaal.FindShrine = false; // false = disabled, 1 = search after hot tp message, 2 = search as soon as leader is found
  138. Config.AutoBaal.LeechSpot = [15115, 5050]; // X, Y coords of Throne Room leech spot
  139. Config.AutoBaal.LongRangeSupport = false; // Cast long distance skills from a safe spot
  140. Scripts.BaalHelper = false;
  141. Config.BaalHelper.Wait = 120; // Seconds to wait for a runner to be in Throne
  142. Config.BaalHelper.KillNihlathak = false; // Kill Nihlathak before going to Throne
  143. Config.BaalHelper.FastChaos = false; // Kill Diablo before going to Throne
  144. Config.BaalHelper.DollQuit = false; // End script if Dolls (Undead Soul Killers) are found.
  145. Config.BaalHelper.KillBaal = true; // Kill Baal. If set to false, you must configure Config.QuitList or the bot will wait indefinitely.
  146. Config.BaalHelper.SkipTP = false; // Don't wait for a TP, go to WSK3 and wait for someone to go to throne. Anti PK measure.
  147. Scripts.Follower = false; // Script that follows a manually played leader around like a merc. For a list of commands, see Follower.js
  148.  
  149. // *** special scripts ***
  150. Scripts.WPGetter = false; // Get missing waypoints
  151. Scripts.GetKeys = false; // Hunt for T/H/D keys
  152. Scripts.OrgTorch = false;
  153. Config.OrgTorch.MakeTorch = true; // Convert organ sets to torches
  154. Config.OrgTorch.WaitForKeys = true; // Enable Torch System to get keys from other profiles. See libs/TorchSystem.js for more info
  155. Config.OrgTorch.WaitTimeout = 15; // Time in minutes to wait for keys before moving on
  156. Config.OrgTorch.UseSalvation = true; // Use Salvation aura on Mephisto (if possible)
  157. Config.OrgTorch.GetFade = false; // Get fade by standing in a fire. You MUST have Last Wish or Treachery on your character being worn.
  158. Scripts.Rusher = false; // Rush bot alpha version (no questing yet, only rushing), for a list of commands, see Rusher.js
  159. Config.Rusher.WaitPlayerCount = 0; // Wait until game has a certain number of players (0 - don't wait, 8 - wait for full game).
  160. Scripts.Rushee = false; // Automatic rushee, works with Rusher
  161. Config.Rushee.Quester = false; // Enter portals and get quest items.
  162. Config.Rushee.Bumper = false; // Do Ancients and Baal. Minimum levels: 20 - norm, 40 - nightmare
  163. Scripts.CrushTele = false; // classic rush teleporter. go to area of interest and press "-" numpad key
  164. Scripts.Questing = false; // solves missing quests (skill/stat+shenk)
  165. Scripts.Gamble = false; // Gambling system, other characters will mule gold into your game so you can gamble infinitely. See Gambling.js
  166. Scripts.GhostBusters = false; // Kill ghosts in most areas that contain them
  167. Scripts.Enchant = false;
  168. Config.Enchant.Triggers = ["chant", "cows", "wps"]; // Chat commands for enchant, cow level and waypoint giving
  169. Config.Enchant.GetLeg = false; // Get Wirt's Leg from Tristram. If set to false, it will check for the leg in town.
  170. Config.Enchant.AutoChant = false; // Automatically enchant nearby players and their minions
  171. Config.Enchant.GameLength = 20; // Game length in minutes
  172. Scripts.IPHunter = false;
  173. Config.IPHunter.IPList = []; // List of IPs to look for. example: [165, 201, 64]
  174. Config.IPHunter.GameLength = 3; // Number of minutes to stay in game if ip wasn't found
  175. Scripts.KillDclone = false; // Kill Diablo Clone by using Arcane Sanctuary waypoint. Diablo needs to walk the Earth in the game.
  176. Scripts.ShopBot = false; // Fast waypoint-based shopbot
  177. Config.ShopBot.ShopNPC = "Anya"; // Supported NPCs: Fara, Ormus, Anya, Elzix
  178. // Scan only selected classids for maximum speed. See libs/config/templates/ShopBot.txt
  179. Config.ShopBot.ScanIDs = [187, 188, 194, 195, 326, 327, 338, 373, 397, 443, 449];
  180. Scripts.ChestMania = false; // Open chests in configured areas
  181. Config.ChestMania.Act1 = [13, 14, 15, 16, 18, 19]; // List of act 1 areas to open chests in
  182. Config.ChestMania.Act2 = [55, 59, 65, 66, 67, 68, 69, 70, 71, 72]; // List of act 2 areas to open chests in
  183. Config.ChestMania.Act3 = [79, 80, 81, 92, 93, 84, 85, 90]; // List of act 3 areas to open chests in
  184. Config.ChestMania.Act4 = []; // List of act 4 areas to open chests in
  185. Config.ChestMania.Act5 = [115, 116, 119, 125, 126, 127]; // List of act 5 areas to open chests in
  186. Scripts.ClearAnyArea = false; // Clear any area
  187. Config.ClearAnyArea.AreaList = []; // List of area ids to clear. See sdk/areas.txt
  188.  
  189. // *** Guest scripts ***
  190.  
  191. // Baal Assistant by YourGreatestMember
  192. Scripts.BaalAssistant = false; // Used to leech or help in baal runs.
  193. Config.BaalAssistant.Wait = 120; // Seconds to wait for a runner to be in the throne / portal wait / safe TP wait / hot TP wait...
  194. Config.BaalAssistant.KillNihlathak = false; // Kill Nihlathak before going to Throne
  195. Config.BaalAssistant.FastChaos = false; // Kill Diablo before going to Throne
  196. Config.BaalAssistant.Helper = true; // Set to true to help attack, set false to to leech.
  197. Config.BaalAssistant.GetShrine = false; // Set to true to get a experience shrine at the start of the run.
  198. Config.BaalAssistant.GetShrineWaitForHotTP = false; // Set to true to get a experience shrine after leader shouts the hot tp message as defined in Config.BaalAssistant.HotTPMessage
  199. Config.BaalAssistant.SkipTP = false; // Set to true to enable the helper to skip the TP and teleport down to the throne room.
  200. Config.BaalAssistant.WaitForSafeTP = false; // Set to true to wait for a safe TP message (defined in SafeTPMessage)
  201. Config.BaalAssistant.DollQuit = false; // Quit on dolls. (Hardcore players?)
  202. Config.BaalAssistant.SoulQuit = false; // Quit on Souls. (Hardcore players?)
  203. Config.BaalAssistant.KillBaal = true; // Set to true to kill baal, if you set to false you MUST configure Config.QuitList or Config.BaalAssistant.NextGameMessage or the bot will wait indefinitely.
  204. Config.BaalAssistant.HotTPMessage = ["Hot"]; // Configure safe TP messages.
  205. Config.BaalAssistant.SafeTPMessage = ["Safe", "Clear"]; // Configure safe TP messages.
  206. Config.BaalAssistant.BaalMessage = ["Baal"]; // Configure baal messages, this is a precautionary measure.
  207. Config.BaalAssistant.NextGameMessage = ["Next Game", "Next", "New Game"]; // Next Game message, this is a precautionary quit command, Reccomended setting up: Config.QuitList
  208.  
  209. // Town settings
  210. Config.HealHP = 50; // Go to a healer if under designated percent of life.
  211. Config.HealMP = 0; // Go to a healer if under designated percent of mana.
  212. Config.HealStatus = false; // Go to a healer if poisoned or cursed
  213. Config.UseMerc = true; // Use merc. This is ignored and always false in d2classic.
  214. Config.MercWatch = true; // Instant merc revive during battle.
  215.  
  216. // Potion settings
  217. Config.UseHP = 75; // Drink a healing potion if life is under designated percent.
  218. Config.UseRejuvHP = 40; // Drink a rejuvenation potion if life is under designated percent.
  219. Config.UseMP = 30; // Drink a mana potion if mana is under designated percent.
  220. Config.UseRejuvMP = 0; // Drink a rejuvenation potion if mana is under designated percent.
  221. Config.UseMercHP = 75; // Give a healing potion to your merc if his/her life is under designated percent.
  222. Config.UseMercRejuv = 0; // Give a rejuvenation potion to your merc if his/her life is under designated percent.
  223. Config.HPBuffer = 0; // Number of healing potions to keep in inventory.
  224. Config.MPBuffer = 0; // Number of mana potions to keep in inventory.
  225. Config.RejuvBuffer = 0; // Number of rejuvenation potions to keep in inventory.
  226.  
  227. // Chicken settings
  228. Config.LifeChicken = 30; // Exit game if life is less or equal to designated percent.
  229. Config.ManaChicken = 0; // Exit game if mana is less or equal to designated percent.
  230. Config.MercChicken = 0; // Exit game if merc's life is less or equal to designated percent.
  231. Config.TownHP = 0; // Go to town if life is under designated percent.
  232. Config.TownMP = 0; // Go to town if mana is under designated percent.
  233.  
  234. /* Inventory lock configuration. !!!READ CAREFULLY!!!
  235. * 0 = item is locked and won't be moved. If item occupies more than one slot, ALL of those slots must be set to 0 to lock it in place.
  236. * Put 0s where your torch, annihilus and everything else you want to KEEP is.
  237. * 1 = item is unlocked and will be dropped, stashed or sold.
  238. * If you don't change the default values, the bot won't stash items.
  239. */
  240. Config.Inventory[0] = [1,1,1,1,1,1,0,0,0,0];
  241. Config.Inventory[1] = [1,1,1,1,1,1,0,0,0,0];
  242. Config.Inventory[2] = [1,1,1,1,1,1,0,0,0,0];
  243. Config.Inventory[3] = [1,1,1,1,1,1,0,0,0,0];
  244.  
  245. Config.StashGold = 10000; // Minimum amount of gold to stash.
  246.  
  247. /* Potion types for belt columns from left to right.
  248. * Rejuvenation potions must always be rightmost.
  249. * Supported potions - Healing ("hp"), Mana ("mp") and Rejuvenation ("rv")
  250. */
  251. Config.BeltColumn[0] = "hp";
  252. Config.BeltColumn[1] = "mp";
  253. Config.BeltColumn[2] = "rv";
  254. Config.BeltColumn[3] = "rv";
  255.  
  256. /* Minimum amount of potions. If we have less, go to vendor to purchase more.
  257. * Set rejuvenation columns to 0, because they can't be bought.
  258. */
  259. Config.MinColumn[0] = 3;
  260. Config.MinColumn[1] = 3;
  261. Config.MinColumn[2] = 0;
  262. Config.MinColumn[3] = 0;
  263.  
  264. // Pickit config. Default folder is kolbot/pickit.
  265. Config.PickitFiles.push("kolton.nip");
  266. Config.PickitFiles.push("LLD.nip");
  267. Config.PickitFiles.push("keyorg.nip");
  268. Config.PickRange = 40; // Pick radius
  269. Config.FastPick = true; // Check and pick items between attacks
  270.  
  271. // Additional item info log settings. All info goes to \logs\ItemLog.txt
  272. Config.ItemInfo = false; // Log stashed, skipped (due to no space) or sold items.
  273. Config.ItemInfoQuality = []; // The quality of sold items to log.
  274.  
  275. // Item identification settings
  276. Config.CainID.Enable = false; // Identify items at Cain
  277. Config.CainID.MinGold = 2500000; // Minimum gold (stash + character) to have in order to use Cain.
  278. Config.CainID.MinUnids = 3; // Minimum number of unid items in order to use Cain.
  279. Config.FieldID = false; // Identify items in the field instead of going to town.
  280.  
  281. // Repair settings
  282. Config.CubeRepair = false; // Repair weapons with Ort and armor with Ral rune. Don't use it if you don't understand the risk of losing items.
  283. Config.RepairPercent = 80; // Durability percent of any equipped item that will trigger repairs.
  284.  
  285. // Gambling config
  286. Config.Gamble = false;
  287. Config.GambleGoldStart = 1000000;
  288. Config.GambleGoldStop = 500000;
  289.  
  290. // Check libs/NTItemAlias.dbl file for other item classids
  291. Config.GambleItems.push(520); // Amulet
  292. Config.GambleItems.push(522); // Ring
  293. Config.GambleItems.push(418); // Circlet
  294. Config.GambleItems.push(419); // Coronet
  295.  
  296. /* Cubing config. All recipe names are available in Templates/Cubing.txt
  297. * The format is Config.Recipes.push([recipe_name, item_id, etherealness]). Etherealness is optional and only applies to some recipes.
  298. */
  299. Config.Cubing = false; // Set to true to enable cubing.
  300.  
  301. // Ingredients for the following recipes will be auto-picked, for classids check libs/NTItemAlias.dbl
  302.  
  303. //Config.Recipes.push([Recipe.Gem, 560]); // perfect amethyst
  304. //Config.Recipes.push([Recipe.Gem, 565]); // perfect topaz
  305. //Config.Recipes.push([Recipe.Gem, 570]); // perfect sapphire
  306. //Config.Recipes.push([Recipe.Gem, 575]); // perfect emerald
  307. //Config.Recipes.push([Recipe.Gem, 580]); // perfect ruby
  308. //Config.Recipes.push([Recipe.Gem, 585]); // perfect diamond
  309. //Config.Recipes.push([Recipe.Gem, 600]); // perfect skull
  310.  
  311. //Config.Recipes.push([Recipe.Token]); // token of absolution
  312.  
  313. //Config.Recipes.push([Recipe.Rune, 630]); // pul -> um
  314. //Config.Recipes.push([Recipe.Rune, 631]); // um -> mal
  315. //Config.Recipes.push([Recipe.Rune, 632]); // mal -> ist
  316. //Config.Recipes.push([Recipe.Rune, 633]); // ist -> gul
  317. //Config.Recipes.push([Recipe.Rune, 634]); // gul -> vex
  318.  
  319. //Config.Recipes.push([Recipe.Caster.Amulet]); // Craft Caster Amulet
  320. //Config.Recipes.push([Recipe.Blood.Ring]); // Craft Blood Ring
  321. //Config.Recipes.push([Recipe.Blood.Helm, 424]); // Craft Blood Armet
  322. //Config.Recipes.push([Recipe.HitPower.Gloves, 452]); // Craft Hit Power Vambraces
  323.  
  324. // The gems not used by other recipes will be used for magic item rerolling.
  325.  
  326. //Config.Recipes.push([Recipe.Reroll.Magic, 421]); // Reroll magic Diadem
  327. //Config.Recipes.push([Recipe.Reroll.Magic, 605]); // Reroll magic Grand Charm (ilvl 91+)
  328.  
  329. //Config.Recipes.push([Recipe.Reroll.Rare, 421]); // Reroll rare Diadem
  330.  
  331. /* Base item for the following recipes must be in pickit. The rest of the ingredients will be auto-picked.
  332. * Use Roll.Eth, Roll.NonEth or Roll.All to determine what kind of base item to roll - ethereal, non-ethereal or all.
  333. */
  334. //Config.Recipes.push([Recipe.Socket.Weapon, 255, Roll.Eth]); // Socket ethereal Thresher
  335. //Config.Recipes.push([Recipe.Socket.Weapon, 256, Roll.Eth]); // Socket ethereal Cryptic Axe
  336. //Config.Recipes.push([Recipe.Socket.Armor, 442, Roll.Eth]); // Socket ethereal Sacred Armor
  337. //Config.Recipes.push([Recipe.Socket.Armor, 443, Roll.Eth]); // Socket ethereal Archon Plate
  338.  
  339. //Config.Recipes.push([Recipe.Unique.Armor.ToExceptional, 335, Roll.NonEth]); // Upgrade Bloodfist to Exceptional
  340. //Config.Recipes.push([Recipe.Unique.Armor.ToExceptional, 337, Roll.NonEth]); // Upgrade Magefist to Exceptional
  341. //Config.Recipes.push([Recipe.Unique.Armor.ToElite, 381, Roll.NonEth]); // Upgrade Bloodfist or Grave Palm to Elite
  342. //Config.Recipes.push([Recipe.Unique.Armor.ToElite, 383, Roll.NonEth]); // Upgrade Magefist or Lavagout to Elite
  343. //Config.Recipes.push([Recipe.Unique.Armor.ToElite, 389, Roll.NonEth]); // Upgrade Gore Rider to Elite
  344.  
  345. /* Runeword config. All recipes are available in Templates/Runewords.txt
  346. * Keep lines follow pickit format and any given runeword is tested vs ALL lines so you don't need to repeat them
  347. */
  348. Config.MakeRunewords = false; // Set to true to enable runeword making/rerolling
  349.  
  350. //Config.Runewords.push([Runeword.Insight, 255]); // Thresher
  351. //Config.Runewords.push([Runeword.Insight, 256]); // Cryptic Axe
  352.  
  353. //Config.KeepRunewords.push("[type] == polearm # [meditationaura] == 17");
  354.  
  355. //Config.Runewords.push([Runeword.Spirit, 447]); // Monarch
  356. //Config.Runewords.push([Runeword.Spirit, 498]); // Sacred Targe
  357.  
  358. //Config.KeepRunewords.push("[type] == shield || [type] == auricshields # [fcr] == 35");
  359.  
  360. // Public game options
  361.  
  362. // If Config.Leader is set, the bot will only accept invites from leader. If Config.PublicMode is not 0, Baal and Diablo script will open Town Portals.
  363. Config.PublicMode = 3; // 1 = invite and accept, 2 = accept only, 3 = invite only, 0 = disable
  364. // Party message settings. Each setting represents an array of messages that will be randomly chosen.
  365. // $name, $level, $class and $killer are replaced by the player's name, level, class and killer
  366. Config.Greetings = []; // Example: ["Hello, $name (level $level $class)"]
  367. Config.DeathMessages = []; // Example: ["Watch out for that $killer, $name!"]
  368. Config.Congratulations = []; // Example: ["Congrats on level $level, $name!"]
  369. Config.ShitList = false; // Blacklist hostile players so they don't get invited to party.
  370.  
  371. // General config
  372. Config.LastMessage = ""; // Message or array of messages to say at the end of the run. Use $nextgame to say next game - "Next game: $nextgame" (works with lead entry point)
  373. Config.MinGameTime = 90; // Min game time in seconds. Bot will TP to town and stay in game if the run is completed before.
  374. Config.MaxGameTime = 0; // Maximum game time in seconds. Quit game when limit is reached.
  375. Config.TeleSwitch = false; // Switch to slot II when teleporting more than 1 node.
  376. Config.OpenChests = false; // Open chests. Controls key buying.
  377. Config.MiniShopBot = true; // Scan items in NPC shops.
  378. Config.PacketShopping = true; // Use packets to shop. Imporves shopping speed.
  379. Config.TownCheck = false; // Go to town if out of potions
  380. Config.LogExperience = true; // Print experience statistics in the manager.
  381. Config.PingQuit = [{Ping: 0, Duration: 0}]; // Quit if ping is over the given value for over the given time period in seconds.
  382.  
  383. // Shrine Scanner - scan for shrines while moving.
  384. // Put the shrine types in order of priority (from highest to lowest). For a list of types, see sdk/shrines.txt
  385. Config.ScanShrines = [];
  386.  
  387. // MF Switch
  388. Config.MFSwitchPercent = 0; // Boss life % to switch weapons at. Set to 0 to disable.
  389. Config.MFSwitch = 0; // MF weapon slot: 0 = slot I, 1 = slot II
  390.  
  391. // Fastmod config
  392. Config.FCR = 125; // 0 - disable, 1 to 255 - set value of faster cast rate
  393. Config.FHR = 255; // 0 - disable, 1 to 255 - set value of faster hit recovery
  394. Config.FBR = 255; // 0 - disable, 1 to 255 - set value of faster block recovery
  395. Config.IAS = 255; // 0 - disable, 1 to 255 - set value of increased attack speed
  396. Config.PacketCasting = 2; // 0 = disable, 1 = packet teleport, 2 = full packet casting.
  397.  
  398. // Anti-hostile config
  399. Config.AntiHostile = false; // Enable anti-hostile
  400. Config.HostileAction = 2; // 0 - quit immediately, 1 - quit when hostile player is sighted, 2 - attack hostile
  401. Config.TownOnHostile = false; // Go to town instead of quitting when HostileAction is 0 or 1
  402. Config.RandomPrecast = false; // Anti-PK measure, only supported in Baal and BaalHelper and BaalAssisstant at the moment.
  403. Config.ViperCheck = false; // Quit if revived Tomb Vipers are sighted
  404.  
  405. // DClone config
  406. Config.StopOnDClone = false; // Go to town and idle as soon as Diablo walks the Earth
  407. Config.SoJWaitTime = 5; // Time in minutes to wait for another SoJ sale before leaving game. 0 = disabled
  408. Config.KillDclone = false; // Go to Palace Cellar 3 and try to kill Diablo Clone. Pointless if you already have Annihilus.
  409.  
  410. // Monster skip config
  411. // Skip immune monsters. Possible options: "fire", "cold", "lightning", "poison", "physical", "magic".
  412. // You can combine multiple resists with "and", for example - "fire and cold", "physical and cold and poison"
  413. Config.SkipImmune = [];
  414. // Skip enchanted monsters. Possible options: "extra strong", "extra fast", "cursed", "magic resistant", "fire enchanted", "lightning enchanted", "cold enchanted", "mana burn", "teleportation", "spectral hit", "stone skin", "multiple shots".
  415. // You can combine multiple enchantments with "and", for example - "cursed and extra fast", "mana burn and extra strong and lightning enchanted"
  416. Config.SkipEnchant = [];
  417. // Skip monsters with auras. Possible options: "fanaticism", "might", "holy fire", "blessed aim", "holy freeze", "holy shock". Conviction is bugged, don't use it.
  418. Config.SkipAura = [];
  419.  
  420. /* Attack config
  421. * To disable an attack, set it to -1
  422. * Skills MUST be POSITIVE numbers. For reference see http://pastebin.com/baShRwWM
  423. */
  424. Config.AttackSkill[0] = -1; // Preattack skill. Not implemented yet.
  425. Config.AttackSkill[1] = 112; // Primary skill to bosses.
  426. Config.AttackSkill[2] = 113; // Primary aura to bosses
  427. Config.AttackSkill[3] = 112; // Primary skill to others.
  428. Config.AttackSkill[4] = 113; // Primary aura to others.
  429. Config.AttackSkill[5] = 101; // Secondary skill if monster is immune to primary.
  430. Config.AttackSkill[6] = 124; // Secondary aura.
  431.  
  432. // Low mana skills - these will be used if main skills can't be cast.
  433. Config.LowManaSkill[0] = -1; // Low mana skill.
  434. Config.LowManaSkill[1] = -1; // Low mana aura.
  435.  
  436. Config.BossPriority = true; // Set to true to attack Unique/SuperUnique monsters first when clearing
  437. Config.ClearType = 0xF; // Monster spectype to kill in level clear scripts (ie. Mausoleum). 0xF = skip normal, 0x7 = champions/bosses, 0 = all
  438.  
  439. // Wereform setup. Make sure you read Templates/Attacks.txt for attack skill format.
  440. Config.Wereform = false; // 0 / false - don't shapeshift, 1 / "Werewolf" - change to werewolf, 2 / "Werebear" - change to werebear
  441.  
  442. // Class specific config
  443. Config.AvoidDolls = false; // Try to attack Soul Killers from a greater distance with hammerdins.
  444. Config.Vigor = true; // Swith to Vigor when running
  445. Config.Redemption = [50, 50]; // Switch to Redemption after clearing an area if under designated life or mana. Format: [lifepercent, manapercent]
  446.  
  447.  
  448. // AutoBuild System ( See /d2bs/kolbot/libs/config/Builds/README.txt for instructions )
  449. Config.AutoBuild.Enabled = false; // This will enable or disable the AutoBuild system
  450.  
  451. Config.AutoBuild.Template = "BuildName"; // The name of the build associated with an existing
  452. // template filename located in libs/config/Builds/
  453.  
  454. Config.AutoBuild.Verbose = true; // Allows script to print messages in console
  455. Config.AutoBuild.DebugMode = true; // Debug mode prints a little more information to console and
  456. // logs activity to /logs/AutoBuild.CharacterName._MM_DD_YYYY.log
  457. // It automatically enables Config.AutoBuild.Verbose
  458. }
Add Comment
Please, Sign In to add comment