Guest User

blizz config

a guest
Dec 14th, 2019
365
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Sorceress 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 = false;
  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.GetKeys = false;  // Hunt for T/H/D keys
  32.     Scripts.Countess = true;
  33.         Config.Countess.KillGhosts = false;
  34.     Scripts.Cows = false;
  35.     Scripts.Corpsefire = false;
  36.         Config.Corpsefire.ClearDen = false;
  37.     Scripts.Mausoleum = false;
  38.         Config.Mausoleum.KillBloodRaven = false;
  39.         Config.Mausoleum.ClearCrypt = false;
  40.     Scripts.Rakanish = false;
  41.         Config.Rakanishu.KillGriswold = true;
  42.     Scripts.UndergroundPassage = false;
  43.     Scripts.Coldcrow = false;
  44.     Scripts.Tristram = false;
  45.         Config.Tristram.WalkClear = false; // Disable teleport while clearing to protect leechers
  46.         Config.Tristram.PortalLeech = false; // Set to true to open a portal for leechers.
  47.     Scripts.Pit = false;
  48.         Config.Pit.ClearPit1 = true;
  49.     Scripts.Treehead = false;
  50.     Scripts.Smith = false;
  51.     Scripts.BoneAsh = false;
  52.     Scripts.Andariel = true;
  53.  
  54.     // *** act 2 ***
  55.     Scripts.Radament = false;
  56.     Scripts.Coldworm = false;
  57.         Config.Coldworm.KillBeetleburst = false;
  58.         Config.Coldworm.ClearMaggotLair = false; // Clear all 3 levels
  59.     Scripts.AncientTunnels = true;
  60.         Config.AncientTunnels.OpenChest = false; // Open special chest in Lost City
  61.         Config.AncientTunnels.KillDarkElder = false;
  62.     Scripts.Summoner = false;
  63.         Config.Summoner.FireEye = false;
  64.     Scripts.Tombs = false;
  65.     Scripts.Duriel = false;
  66.  
  67.     // *** act 3 ***
  68.     Scripts.Stormtree = false;
  69.     Scripts.KurastTemples = false;
  70.     Scripts.Icehawk = false;
  71.     Scripts.Endugu = false;
  72.     Scripts.Travincal = false;
  73.         Config.Travincal.PortalLeech = false; // Set to true to open a portal for leechers.
  74.     Scripts.Mephisto = true;
  75.         Config.Mephisto.MoatTrick = false;
  76.         Config.Mephisto.KillCouncil = true;
  77.         Config.Mephisto.TakeRedPortal = true;  
  78.  
  79.     // *** act 4 ***
  80.     Scripts.OuterSteppes = false;
  81.     Scripts.Izual = false;
  82.     Scripts.Hephasto = false;
  83.     Scripts.Vizier = false; // Intended for classic sorc, kills Vizier only.
  84.     Scripts.FastDiablo = false;
  85.     Scripts.Diablo = false;
  86.         Config.Diablo.WalkClear = false; // Disable teleport while clearing to protect leechers
  87.         Config.Diablo.Entrance = true; // Start from entrance
  88.         Config.Diablo.SealWarning = "Leave the seals alone!";
  89.         Config.Diablo.EntranceTP = "Entrance TP up";
  90.         Config.Diablo.StarTP = "Star TP up";
  91.         Config.Diablo.DiabloMsg = "Diablo";
  92.     Scripts.SealLeader = false; // Clear a safe spot around seals and invite leechers in. Leechers should run SealLeecher script. Don't run with Diablo or FastDiablo.
  93.  
  94.     // *** act 5 ***
  95.     Scripts.Pindleskin = false;
  96.         Config.Pindleskin.UseWaypoint = false;
  97.         Config.Pindleskin.KillNihlathak = false;
  98.         Config.Pindleskin.ViperQuit = false; // End script if Tomb Vipers are found.
  99.     Scripts.Nihlathak = false;
  100.         Config.Nihlathak.ViperQuit = false; // End script if Tomb Vipers are found.
  101.     Scripts.Eldritch = false;
  102.         Config.Eldritch.OpenChest = true;
  103.         Config.Eldritch.KillShenk = true;
  104.         Config.Eldritch.KillDacFarren = true;
  105.     Scripts.Abaddon = false;
  106.     Scripts.Frozenstein = false;
  107.         Config.Frozenstein.ClearFrozenRiver = true;
  108.     Scripts.Bonesaw = false;
  109.         Config.Bonesaw.ClearDrifterCavern = false;
  110.     Scripts.Snapchip = false;
  111.         Config.Snapchip.ClearIcyCellar = true;
  112.     Scripts.Worldstone = false;
  113.     Scripts.Baal = false;
  114.         Config.Baal.HotTPMessage = "Hot TP!";
  115.         Config.Baal.SafeTPMessage = "Safe TP!";
  116.         Config.Baal.BaalMessage = "Baal!";
  117.         Config.Baal.SoulQuit = false; // End script if Souls (Burning Souls) are found.
  118.         Config.Baal.DollQuit = false; // End script if Dolls (Undead Soul Killers) are found.
  119.         Config.Baal.KillBaal = true; // Kill Baal. Leaves game after wave 5 if false.
  120.  
  121.     /* ### leeching section ###
  122.     * Unless stated otherwise, leader's character name isn't needed on order to run.
  123.     * Don't use more scripts of the same type! (Run AutoBaal OR BaalHelper, not both)
  124.     */
  125.  
  126.     Config.Leader = ""; // Leader's ingame character name. Leave blank to try auto-detection (works in AutoBaal, Wakka, MFHelper)
  127.     Config.QuitList = [""]; // List of character names to quit with. Example: Config.QuitList = ["MySorc", "MyDin"];
  128.     Config.QuitListMode = 0; // 0 = use character names; 1 = use profile names (all profiles must run on the same computer).
  129.  
  130.     Scripts.TristramLeech = false; // Enters Tristram, attempts to stay close to the leader and will try and help kill.
  131.     Scripts.TravincalLeech = false; // Enters portal at back of Travincal.
  132.         Config.TravincalLeech.Helper = true; // If set to true the character will teleport to the stairs and help attack.
  133.     Scripts.MFHelper = false; // Run the same MF run as the MFLeader. Leader must have Config.MFLeader = true
  134.     Scripts.Wakka = false; // Walking chaos leecher with auto leader assignment, stays at safe distance from the leader
  135.     Scripts.SealLeecher = false; // Enter safe portals to Chaos. Leader should run SealLeader.
  136.     Scripts.DiabloHelper = false; // Chaos helper, kills monsters and doesn't open seals on its own.
  137.         Config.DiabloHelper.Wait = 120; // Seconds to wait for a runner to be in Chaos. If Config.Leader is set, it will wait only for the leader.
  138.         Config.DiabloHelper.Entrance = true; // Start from entrance. Set to false to start from star.
  139.         Config.DiabloHelper.SkipTP = false; // Don't wait for town portal and directly head to chaos. It will clear monsters around chaos entrance and wait for the runner.
  140.         Config.DiabloHelper.SkipIfBaal = false; // End script if there are party members in a Baal run.
  141.     Scripts.AutoBaal = false; // Baal leecher with auto leader assignment
  142.         Config.AutoBaal.FindShrine = false; // false = disabled, 1 = search after hot tp message, 2 = search as soon as leader is found
  143.         Config.AutoBaal.LeechSpot = [15115, 5050]; // X, Y coords of Throne Room leech spot
  144.         Config.AutoBaal.LongRangeSupport = false; // Cast long distance skills from a safe spot
  145.     Scripts.BaalHelper = false;
  146.         Config.BaalHelper.Wait = 120; // Seconds to wait for a runner to be in Throne
  147.         Config.BaalHelper.KillNihlathak = false; // Kill Nihlathak before going to Throne
  148.         Config.BaalHelper.FastChaos = false; // Kill Diablo before going to Throne
  149.         Config.BaalHelper.DollQuit = false;  // End script if Dolls (Undead Soul Killers) are found.
  150.         Config.BaalHelper.KillBaal = true; // Kill Baal. If set to false, you must configure Config.QuitList or the bot will wait indefinitely.
  151.         Config.BaalHelper.SkipTP = false; // Don't wait for a TP, go to WSK3 and wait for someone to go to throne. Anti PK measure.
  152.     Scripts.Follower = false; // Script that follows a manually played leader around like a merc. For a list of commands, see Follower.js
  153.  
  154.     // *** special scripts ***
  155.     Scripts.WPGetter = false; // Get missing waypoints
  156.     Scripts.OrgTorch = false;
  157.         Config.OrgTorch.MakeTorch = true; // Convert organ sets to torches
  158.         Config.OrgTorch.WaitForKeys = true; // Enable Torch System to get keys from other profiles. See libs/TorchSystem.js for more info
  159.         Config.OrgTorch.WaitTimeout = 15; // Time in minutes to wait for keys before moving on
  160.         Config.OrgTorch.UseSalvation = true; // Use Salvation aura on Mephisto (if possible)
  161.         Config.OrgTorch.GetFade = false; // Get fade by standing in a fire. You MUST have Last Wish or Treachery on your character being worn.
  162.     Scripts.Rusher = false; // Rush bot. For a list of commands, see Rusher.js
  163.         Config.Rusher.WaitPlayerCount = 0; // Wait until game has a certain number of players (0 - don't wait, 8 - wait for full game).
  164.         Config.Rusher.Radament = false; // Do Radament quest.
  165.         Config.Rusher.LamEsen = false; // Do Lam Esen quest.
  166.         Config.Rusher.Izual = false; // Do Izual quest.
  167.         Config.Rusher.Shenk = false; // Do Shenk quest.
  168.         Config.Rusher.Anya = false; // Do Anya quest.
  169.         Config.Rusher.LastRun = ""; // End rush after this run. List of runs: http://pastebin.com/Uez3nZ6g
  170.     Scripts.Rushee = false; // Automatic rushee, works with Rusher. Set Rusher's character name as Config.Leader
  171.         Config.Rushee.Quester = false; // Enter portals and get quest items.
  172.         Config.Rushee.Bumper = false; // Do Ancients and Baal. Minimum levels: 20 - norm, 40 - nightmare
  173.     Scripts.CrushTele = false; // classic rush teleporter. go to area of interest and press "-" numpad key
  174.     Scripts.Questing = false; // solves missing quests (skill/stat+shenk)
  175.     Scripts.Gamble = false; // Gambling system, other characters will mule gold into your game so you can gamble infinitely. See Gambling.js
  176.     Scripts.Crafting = false; // Crafting system, other characters will mule crafting ingredients. See CraftingSystem.js
  177.     Scripts.GhostBusters = false; // Kill ghosts in most areas that contain them
  178.     Scripts.Enchant = false;
  179.         Config.Enchant.Triggers = ["chant", "cows", "wps"]; // Chat commands for enchant, cow level and waypoint giving
  180.         Config.Enchant.GetLeg = false; // Get Wirt's Leg from Tristram. If set to false, it will check for the leg in town.
  181.         Config.Enchant.AutoChant = false; // Automatically enchant nearby players and their minions
  182.         Config.Enchant.GameLength = 20; // Game length in minutes
  183.     Scripts.IPHunter = false;
  184.         Config.IPHunter.IPList = []; // List of IPs to look for. example: [165, 201, 64]
  185.         Config.IPHunter.GameLength = 3; // Number of minutes to stay in game if ip wasn't found
  186.     Scripts.KillDclone = false; // Kill Diablo Clone by using Arcane Sanctuary waypoint. Diablo needs to walk the Earth in the game.
  187.     Scripts.ShopBot = false; // Shopbot script. Automatically uses shopbot.nip and ignores other pickits.
  188.         // Supported NPCs: Akara, Charsi, Gheed, Elzix, Fara, Drognan, Ormus, Asheara, Hratli, Jamella, Halbu, Anya. Multiple NPCs are also supported, example: [NPC.Elzix, NPC.Fara]
  189.         // Use common sense when combining NPCs. Shopping in different acts will probably lead to bugs.
  190.         Config.ShopBot.ShopNPC = NPC.Anya;
  191.         // Put item classid numbers or names to scan (remember to put quotes around names). Leave blank to scan ALL items. See libs/config/templates/ShopBot.txt
  192.         Config.ShopBot.ScanIDs = [];
  193.         Config.ShopBot.CycleDelay = 0; // Delay between shopping cycles in milliseconds, might help with crashes.
  194.         Config.ShopBot.QuitOnMatch = false; // Leave game as soon as an item is shopped.
  195.     Scripts.ChestMania = false; // Open chests in configured areas. See sdk/areas.txt
  196.         Config.ChestMania.Act1 = [13, 14, 15, 16, 18, 19]; // List of act 1 areas to open chests in
  197.         Config.ChestMania.Act2 = [55, 59, 65, 66, 67, 68, 69, 70, 71, 72]; // List of act 2 areas to open chests in
  198.         Config.ChestMania.Act3 = [79, 80, 81, 92, 93, 84, 85, 90]; // List of act 3 areas to open chests in
  199.         Config.ChestMania.Act4 = []; // List of act 4 areas to open chests in
  200.         Config.ChestMania.Act5 = [115, 116, 119, 125, 126, 127]; // List of act 5 areas to open chests in
  201.     Scripts.ClearAnyArea = false; // Clear any area. Uses Config.ClearType to determine which type of monsters to kill.
  202.         Config.ClearAnyArea.AreaList = [128, 130]; // List of area ids to clear. See sdk/areas.txt
  203.  
  204.     // *** Guest scripts ***
  205.  
  206.     // Baal Assistant by YourGreatestMember
  207.     Scripts.BaalAssistant = false; // Used to leech or help in baal runs.
  208.         Config.BaalAssistant.Wait = 120; // Seconds to wait for a runner to be in the throne / portal wait / safe TP wait / hot TP wait...
  209.         Config.BaalAssistant.KillNihlathak = false; // Kill Nihlathak before going to Throne
  210.         Config.BaalAssistant.FastChaos = false; // Kill Diablo before going to Throne
  211.         Config.BaalAssistant.Helper = true; // Set to true to help attack, set false to to leech.
  212.         Config.BaalAssistant.GetShrine = false; // Set to true to get a experience shrine at the start of the run.
  213.         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
  214.         Config.BaalAssistant.SkipTP = false; // Set to true to enable the helper to skip the TP and teleport down to the throne room.
  215.         Config.BaalAssistant.WaitForSafeTP = false; // Set to true to wait for a safe TP message (defined in SafeTPMessage)
  216.         Config.BaalAssistant.DollQuit = false; // Quit on dolls. (Hardcore players?)
  217.         Config.BaalAssistant.SoulQuit = false; // Quit on Souls. (Hardcore players?)
  218.         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.
  219.         Config.BaalAssistant.HotTPMessage = ["Hot"]; // Configure safe TP messages.
  220.         Config.BaalAssistant.SafeTPMessage = ["Safe", "Clear"]; // Configure safe TP messages.
  221.         Config.BaalAssistant.BaalMessage = ["Baal"]; // Configure baal messages, this is a precautionary measure.
  222.         Config.BaalAssistant.NextGameMessage = ["Next Game", "Next", "New Game"];   // Next Game message, this is a precautionary quit command, Reccomended setting up: Config.QuitList
  223.  
  224.     // Town settings
  225.     Config.HealHP = 50; // Go to a healer if under designated percent of life.
  226.     Config.HealMP = 0; // Go to a healer if under designated percent of mana.
  227.     Config.HealStatus = false; // Go to a healer if poisoned or cursed
  228.     Config.UseMerc = true; // Use merc. This is ignored and always false in d2classic.
  229.     Config.MercWatch = false; // Instant merc revive during battle.
  230.  
  231.     // Potion settings
  232.     Config.UseHP = 90; // Drink a healing potion if life is under designated percent.
  233.     Config.UseRejuvHP = 75;  // Drink a rejuvenation potion if life is under designated percent.
  234.     Config.UseMP = 30; // Drink a mana potion if mana is under designated percent.
  235.     Config.UseRejuvMP = 5; // Drink a rejuvenation potion if mana is under designated percent.
  236.     Config.UseMercHP = 75; // Give a healing potion to your merc if his/her life is under designated percent.
  237.     Config.UseMercRejuv = 50; // Give a rejuvenation potion to your merc if his/her life is under designated percent.
  238.     Config.HPBuffer = 0; // Number of healing potions to keep in inventory.
  239.     Config.MPBuffer = 0; // Number of mana potions to keep in inventory.
  240.     Config.RejuvBuffer = 0; // Number of rejuvenation potions to keep in inventory.
  241.  
  242.     // Chicken settings
  243.     Config.LifeChicken = 30; // Exit game if life is less or equal to designated percent.
  244.     Config.ManaChicken = 0; // Exit game if mana is less or equal to designated percent.
  245.     Config.MercChicken = 0; // Exit game if merc's life is less or equal to designated percent.
  246.     Config.TownHP = 0; // Go to town if life is under designated percent.
  247.     Config.TownMP = 0; // Go to town if mana is under designated percent.
  248.  
  249.     /* Inventory lock configuration. !!!READ CAREFULLY!!!
  250.      * 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.
  251.      * Put 0s where your torch, annihilus and everything else you want to KEEP is.
  252.      * 1 = item is unlocked and will be dropped, stashed or sold.
  253.      * If you don't change the default values, the bot won't stash items.
  254.      */
  255.     Config.Inventory[0] = [0,1,1,1,1,1,0,0,0,0];
  256.     Config.Inventory[1] = [0,1,1,1,1,0,0,0,0,0];
  257.     Config.Inventory[2] = [0,1,1,1,1,0,0,0,0,0];
  258.     Config.Inventory[3] = [0,1,1,1,1,0,0,0,0,0];
  259.  
  260.     Config.StashGold = 300000; // Minimum amount of gold to stash.
  261.  
  262.     /* Potion types for belt columns from left to right.
  263.      * Rejuvenation potions must always be rightmost.
  264.      * Supported potions - Healing ("hp"), Mana ("mp") and Rejuvenation ("rv")
  265.      */
  266.     Config.BeltColumn[0] = "hp";
  267.     Config.BeltColumn[1] = "mp";
  268.     Config.BeltColumn[2] = "rv";
  269.     Config.BeltColumn[3] = "rv";
  270.  
  271.     /* Minimum amount of potions. If we have less, go to vendor to purchase more.
  272.      * Set rejuvenation columns to 0, because they can't be bought.
  273.      */
  274.     Config.MinColumn[0] = 3;
  275.     Config.MinColumn[1] = 3;
  276.     Config.MinColumn[2] = 0;
  277.     Config.MinColumn[3] = 0;
  278.  
  279.     // Pickit config. Default folder is kolbot/pickit.
  280.     //Config.PickitFiles.push("sets.nip");
  281.     Config.PickitFiles.push("kolton.nip");
  282.     Config.PickitFiles.push("LLD.nip");
  283.     Config.PickRange = 40; // Pick radius
  284.     Config.FastPick = false; // Check and pick items between attacks
  285.  
  286.     /* Advanced automule settings
  287.      * Trigger - Having an item that is on the list will initiate muling. Useful if you want to mule something immediately upon finding.
  288.      * Force - Items listed here will be muled even if they are ingredients for cubing.
  289.      * Exclude - Items listed here will be ignored and will not be muled. Items on Trigger or Force lists are prioritized over this list.
  290.      *
  291.      * List can either be set as string in pickit format and/or as number referring to item classids. Each entries are separated by commas.
  292.      * Example :
  293.      *  Config.AutoMule.Trigger = [639, 640, "[type] == ring && [quality] == unique # [maxmana] == 20"];
  294.      *      This will initiate muling when your character finds Ber, Jah, or SOJ.
  295.      *  Config.AutoMule.Force = [561, 566, 571, 576, 581, 586, 601];
  296.      *      This will mule perfect gems/skull during muling.
  297.      *  Config.AutoMule.Exclude = ["[name] >= talrune && [name] <= solrune", "[name] >= 654 && [name] <= 657"];
  298.      *      This will exclude muling of runes from tal through sol, and any essences.
  299.      */
  300.     Config.AutoMule.Trigger = [];
  301.     Config.AutoMule.Force = [];
  302.     Config.AutoMule.Exclude = [];
  303.  
  304.     // Additional item info log settings. All info goes to \logs\ItemLog.txt
  305.     Config.ItemInfo = false; // Log stashed, skipped (due to no space) or sold items.
  306.     Config.ItemInfoQuality = []; // The quality of sold items to log. See NTItemAlias.dbl for values. Example: Config.ItemInfoQuality = [6, 7, 8];
  307.  
  308.     // Item identification settings
  309.     Config.CainID.Enable = false; // Identify items at Cain
  310.     Config.CainID.MinGold = 3400000; // Minimum gold (stash + character) to have in order to use Cain.
  311.     Config.CainID.MinUnids = 3; // Minimum number of unid items in order to use Cain.
  312.     Config.FieldID = true; // Identify items in the field instead of going to town.
  313.     Config.DroppedItemsAnnounce.Enable = false; // Announce Dropped Items to in-game newbs
  314.     Config.DroppedItemsAnnounce.Quality = []; // Quality of item to announce. See NTItemAlias.dbl for values. Example: Config.DroppedItemsAnnounce.Quality = [6, 7, 8];
  315.  
  316.     // Manager Item Log Screen
  317.     Config.LogKeys = true; // Log keys on item viewer
  318.     Config.LogOrgans = false; // Log organs on item viewer
  319.     Config.LogLowRunes = false; // Log low runes (El - Dol) on item viewer
  320.     Config.LogMiddleRunes = true; // Log middle runes (Hel - Mal) on item viewer
  321.     Config.LogHighRunes = true; // Log high runes (Ist - Zod) on item viewer
  322.     Config.LogLowGems = false; // Log low gems (chipped, flawed, normal) on item viewer
  323.     Config.LogHighGems = false; // Log high gems (flawless, perfect) on item viewer
  324.     Config.SkipLogging = []; // Custom log skip list. Set as three digit item code or classid. Example: ["tes", "ceh", 656, 657] will ignore logging of essences.
  325.     Config.ShowCubingInfo = true; // Show cubing messages on console
  326.  
  327.     // Repair settings
  328.     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.
  329.     Config.RepairPercent = 40; // Durability percent of any equipped item that will trigger repairs.
  330.  
  331.     // Gambling config
  332.     Config.Gamble = true;
  333.     Config.GambleGoldStart = 2500000;
  334.     Config.GambleGoldStop = 100000;
  335.  
  336.     // List of item names or classids for gambling. Check libs/NTItemAlias.dbl file for other item classids.
  337.     //Config.GambleItems.push("Amulet");
  338.     Config.GambleItems.push("Ring");
  339.     Config.GambleItems.push("Circlet");
  340.     Config.GambleItems.push("Coronet");
  341.     Config.GambleItems.push("Diadem");
  342.     //Config.GambleItems.push("chaingloves");
  343.     Config.GambleItems.push("kiteshield");
  344.     //Config.GambleItems.push("heavygloves");
  345.  
  346.     /* Cubing config. All recipe names are available in Templates/Cubing.txt. For item names/classids check NTItemAlias.dbl
  347.      * The format is Config.Recipes.push([recipe_name, item_name_or_classid, etherealness]). Etherealness is optional and only applies to some recipes.
  348.      */
  349.     Config.Cubing = true; // Set to true to enable cubing.
  350.  
  351.     // Ingredients for the following recipes will be auto-picked, for classids check libs/NTItemAlias.dbl
  352.  
  353.     //Config.Recipes.push([Recipe.Gem, "Flawless Amethyst"]); // Make Perfect Amethyst
  354.     //Config.Recipes.push([Recipe.Gem, "Flawless Topaz"]); // Make Perfect Topaz
  355.     //Config.Recipes.push([Recipe.Gem, "Flawless Sapphire"]); // Make Perfect Sapphire
  356.     //Config.Recipes.push([Recipe.Gem, "Flawless Emerald"]); // Make Perfect Emerald
  357.     //Config.Recipes.push([Recipe.Gem, "Flawless Ruby"]); // Make Perfect Ruby
  358.     //Config.Recipes.push([Recipe.Gem, "Flawless Diamond"]); // Make Perfect Diamond
  359.     //Config.Recipes.push([Recipe.Gem, "Flawless Skull"]); // Make Perfect Skull
  360.  
  361.     //Config.Recipes.push([Recipe.Token]); // Make Token of Absolution
  362.    
  363.     Config.Recipes.push([Recipe.Rune, "Io Rune"]); // Upgrade Pul to Um
  364.     Config.Recipes.push([Recipe.Rune, "Lum Rune"]); // Upgrade Pul to Um   
  365.     Config.Recipes.push([Recipe.Rune, "Ko Rune"]); // Upgrade Pul to Um
  366.     Config.Recipes.push([Recipe.Rune, "Fal Rune"]); // Upgrade Pul to Um
  367.     Config.Recipes.push([Recipe.Rune, "Lem Rune"]); // Upgrade Pul to Um
  368.     Config.Recipes.push([Recipe.Rune, "Pul Rune"]); // Upgrade Pul to Um
  369.     Config.Recipes.push([Recipe.Rune, "Um Rune"]); // Upgrade Um to Mal
  370.     //Config.Recipes.push([Recipe.Rune, "Mal Rune"]); // Upgrade Mal to Ist
  371.     //Config.Recipes.push([Recipe.Rune, "Ist Rune"]); // Upgrade Ist to Gul
  372.     Config.Recipes.push([Recipe.Rune, "Gul Rune"]); // Upgrade Gul to Vex
  373.     //Config.Recipes.push([Recipe.Rune, "Vex Rune"]); // Upgrade Gul to Vex
  374.     //Config.Recipes.push([Recipe.Rune, "Ohm Rune"]); // Upgrade Gul to Vex
  375.     //Config.Recipes.push([Recipe.Rune, "Lo Rune"]); // Upgrade Gul to Vex
  376.     //Config.Recipes.push([Recipe.Rune, "Sur Rune"]); // Upgrade Gul to Vex
  377.  
  378.     //Config.Recipes.push([Recipe.Caster.Amulet]); // Craft Caster Amulet
  379.     //Config.Recipes.push([Recipe.Blood.Ring]); // Craft Blood Ring
  380.     //Config.Recipes.push([Recipe.Blood.Gloves, "Vampirebone Gloves"]); // Craft Blood Ring
  381.     //Config.Recipes.push([Recipe.Blood.Gloves, "Sharkskin Gloves"]); // Craft Blood Ring  
  382.     //Config.Recipes.push([Recipe.Blood.Helm, "Armet"]); // Craft Blood Armet
  383.     //Config.Recipes.push([Recipe.HitPower.Gloves, "Vambraces"]); // Craft Hit Power Vambraces
  384.     //Config.Recipes.push([Recipe.HitPower.Gloves, "Heavy Bracers"]); // Craft Hit Power Vambraces
  385.  
  386.     // The gems not used by other recipes will be used for magic item rerolling.
  387.  
  388.     //Config.Recipes.push([Recipe.Reroll.Magic, "Diadem"]); // Reroll magic Diadem
  389.     //Config.Recipes.push([Recipe.Reroll.Magic, "Grand Charm"]); // Reroll magic Grand Charm (ilvl 91+)
  390.  
  391.     //Config.Recipes.push([Recipe.Reroll.Rare, "Diadem"]); // Reroll rare Diadem
  392.  
  393.     /* Base item for the following recipes must be in pickit. The rest of the ingredients will be auto-picked.
  394.      * Use Roll.Eth, Roll.NonEth or Roll.All to determine what kind of base item to roll - ethereal, non-ethereal or all.
  395.      */
  396.     //Config.Recipes.push([Recipe.Socket.Weapon, "Colossus Voulge", Roll.Eth]); // Socket ethereal Thresher  
  397.     Config.Recipes.push([Recipe.Socket.Weapon, "Berserker Axe", Roll.Eth]); // Socket ethereal Thresher  
  398.     Config.Recipes.push([Recipe.Socket.Weapon, "Great Poleaxe", Roll.Eth]); // Socket ethereal Thresher
  399.     Config.Recipes.push([Recipe.Socket.Weapon, "Thresher", Roll.Eth]); // Socket ethereal Thresher
  400.     Config.Recipes.push([Recipe.Socket.Weapon, "Cryptic Axe", Roll.Eth]); // Socket ethereal Cryptic Axe
  401.     Config.Recipes.push([Recipe.Socket.Armor, "Sacred Armor", Roll.Eth]); // Socket ethereal Sacred Armor
  402.     Config.Recipes.push([Recipe.Socket.Armor, "Archon Plate", Roll.Eth]); // Socket ethereal Archon Plate
  403.     Config.Recipes.push([Recipe.Socket.Armor, "Wyrmhide", Roll.Eth]); // Socket ethereal Archon Plate
  404.     Config.Recipes.push([Recipe.Socket.Armor, "Scarab Husk", Roll.Eth]); // Socket ethereal Archon Plate
  405.     Config.Recipes.push([Recipe.Socket.Armor, "Dusk Shroud", Roll.Eth]); // Socket ethereal Archon Plate
  406.     Config.Recipes.push([Recipe.Socket.Armor, "Shadow Plate", Roll.Eth]); // Socket ethereal Sacred Armor
  407.     Config.Recipes.push([Recipe.Socket.Armor, "Diamond Mail", Roll.Eth]); // Socket ethereal Sacred Armor
  408.     Config.Recipes.push([Recipe.Socket.Armor, "Great Hauberk", Roll.Eth]); // Socket ethereal Sacred Armor
  409.     Config.Recipes.push([Recipe.Socket.Armor, "Wire Fleece", Roll.Eth]); // Socket ethereal Sacred Armor
  410.     Config.Recipes.push([Recipe.Socket.Armor, "Hellforge Plate", Roll.Eth]); // Socket ethereal Sacred Armor
  411.     Config.Recipes.push([Recipe.Socket.Armor, "Kraken Shell", Roll.Eth]); // Socket ethereal Sacred Armor  
  412.     Config.Recipes.push([Recipe.Socket.Armor, "Balrog Skin", Roll.Eth]); // Socket ethereal Sacred Armor   
  413.     Config.Recipes.push([Recipe.Socket.Armor, "Lacquered Plate", Roll.Eth]); // Socket ethereal Sacred Armor   
  414.     Config.Recipes.push([Recipe.Socket.Shield, "Vortex Shield", Roll.Eth]); // Socket ethereal Sacred Armor
  415.  
  416.     //Config.Recipes.push([Recipe.Unique.Armor.ToExceptional, "Light Plated Boots", Roll.NonEth]); // Upgrade goblin toes to Exceptional
  417.     //Config.Recipes.push([Recipe.Unique.Armor.ToExceptional, "Heavy Gloves", Roll.NonEth]); // Upgrade Bloodfist to Exceptional
  418.     //Config.Recipes.push([Recipe.Unique.Armor.ToExceptional, "Light Gauntlets", Roll.NonEth]); // Upgrade Magefist to Exceptional
  419.     //Config.Recipes.push([Recipe.Unique.Armor.ToElite, "Sharkskin Gloves", Roll.NonEth]); // Upgrade Bloodfist or Grave Palm to Elite
  420.     //Config.Recipes.push([Recipe.Unique.Armor.ToElite, "Battle Gauntlets", Roll.NonEth]); // Upgrade Magefist or Lavagout to Elite
  421.     //Config.Recipes.push([Recipe.Unique.Armor.ToElite, "War Boots", Roll.NonEth]); // Upgrade Gore Rider to Elite
  422.  
  423.     /* Runeword config. All recipes are available in Templates/Runewords.txt
  424.      * Keep lines follow pickit format and any given runeword is tested vs ALL lines so you don't need to repeat them
  425.      */
  426.     Config.MakeRunewords = true; // Set to true to enable runeword making/rerolling
  427.  
  428.     Config.Runewords.push([Runeword.Insight, "Thresher", Roll.Eth]); // Make ethereal Insight Thresher
  429.     Config.Runewords.push([Runeword.Insight, "Cryptic Axe", Roll.Eth]); // Make ethereal Insight Cryptic Axe
  430.     Config.Runewords.push([Runeword.Insight, "Colossus Voulge", Roll.Eth]); // Make ethereal Insight Cryptic Axe
  431.     Config.Runewords.push([Runeword.Insight, "Great Poleaxe", Roll.Eth]); // Make ethereal Insight Cryptic Axe
  432.     Config.Runewords.push([Runeword.Insight, "Giant Thresher", Roll.Eth]); // Make ethereal Insight Cryptic Axe
  433.    
  434.    
  435.     Config.KeepRunewords.push("[type] == polearm # [meditationaura] <= 17");
  436.  
  437.     Config.Runewords.push([Runeword.Spirit, "Monarch", Roll.NonEth]); // Make Spirit Monarch
  438.     Config.Runewords.push([Runeword.Spirit, "Sacred Targe", Roll.NonEth]); // Make Spirit Sacred Targe
  439.     Config.Runewords.push([Runeword.Spirit, "Sacred Rondache", Roll.NonEth]); // Make Spirit Sacred Targe
  440.  
  441.     Config.KeepRunewords.push("[type] == shield || [type] == auricshields # [fcr] >= 35");
  442.  
  443.     // Public game options
  444.  
  445.     // If LocalChat is enabled, chat can be sent via 'sendCopyData' instead of BNET
  446.     // To allow 'say' to use BNET, use 'say("msg", true)', the 2nd parameter will force BNET
  447.     // LocalChat messages will only be visible on clients running on the same PC
  448.     Config.LocalChat.Enabled = false; // enable the LocalChat system
  449.     Config.LocalChat.Toggle = false; // optional, set to KEY value to toggle through modes 0, 1, 2
  450.     Config.LocalChat.Mode = 0; // 0 = disabled, 1 = chat from 'say' (recommended), 2 = all chat (for manual play)
  451.     // 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.
  452.     Config.PublicMode = 0; // 1 = invite and accept, 2 = accept only, 3 = invite only, 0 = disable
  453.     // Party message settings. Each setting represents an array of messages that will be randomly chosen.
  454.     // $name, $level, $class and $killer are replaced by the player's name, level, class and killer
  455.     Config.Greetings = []; // Example: ["Hello, $name (level $level $class)"]
  456.     Config.DeathMessages = []; // Example: ["Watch out for that $killer, $name!"]
  457.     Config.Congratulations = []; // Example: ["Congrats on level $level, $name!"]
  458.     Config.ShitList = false; // Blacklist hostile players so they don't get invited to party.
  459.     Config.UnpartyShitlisted = false; // Leave party if someone invited a blacklisted player.
  460.  
  461.     // General config
  462.     Config.AutoMap = false; // Set to true to open automap at the beginning of the game.
  463.     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)
  464.     Config.MinGameTime = 170; // Min game time in seconds. Bot will TP to town and stay in game if the run is completed before.
  465.     Config.MaxGameTime = 0; // Maximum game time in seconds. Quit game when limit is reached.
  466.     Config.TeleSwitch = false; // Switch to secondary (non-primary) slot when teleporting more than 5 nodes.
  467.     Config.OpenChests = true; // Open chests. Controls key buying.
  468.     Config.MiniShopBot = true; // Scan items in NPC shops.
  469.     Config.PacketShopping = true; // Use packets to shop. Improves shopping speed.
  470.     Config.TownCheck = false; // Go to town if out of potions
  471.     Config.LogExperience = true; // Print experience statistics in the manager.
  472.     Config.PingQuit = [{Ping: 0, Duration: 0}]; // Quit if ping is over the given value for over the given time period in seconds.
  473.  
  474.     // Shrine Scanner - scan for shrines while moving.
  475.     // Put the shrine types in order of priority (from highest to lowest). For a list of types, see sdk/shrines.txt
  476.     Config.ScanShrines = [15, 12, 13, 6, 20, 18];
  477.  
  478.     // MF Switch
  479.     Config.MFSwitchPercent = 0; // Boss life % to switch to secondary weapon slot. Set to 0 to disable.
  480.  
  481.     // Primary Slot - Bot will try to determine primary slot if not used (non-cta slot that's not empty)
  482.     Config.PrimarySlot = 0; // Set to use specific weapon slot as primary weapon slot: -1 = disabled, 0 = slot I, 1 = slot II
  483.  
  484.     // Speedup config. Full packet casting is not recommended for melee skills.
  485.     Config.FCR = 255; // 0 - disable, 1 to 255 - set value of Faster Cast Rate.
  486.     Config.FHR = 255; // 0 - disable, 1 to 255 - set value of Faster Hit Recovery.
  487.     Config.FBR = 255; // 0 - disable, 1 to 255 - set value of Faster Block Recovery.
  488.     Config.IAS = 255; // 0 - disable, 1 to 255 - set value of Increased Attack Speed.
  489.     Config.PacketCasting = 1; // 0 = disable, 1 = packet teleport, 2 = full packet casting.
  490.     Config.WaypointMenu = true;
  491.  
  492.     // Anti-hostile config
  493.     Config.AntiHostile = false; // Enable anti-hostile.
  494.     Config.HostileAction = 0; // 0 - quit immediately, 1 - quit when hostile player is sighted, 2 - attack hostile.
  495.     Config.TownOnHostile = false; // Go to town instead of quitting when HostileAction is 0 or 1.
  496.     Config.RandomPrecast = false; // Anti-PK measure, only supported in Baal and BaalHelper and BaalAssisstant at the moment.
  497.     Config.ViperCheck = false; // Quit if revived Tomb Vipers are sighted.
  498.  
  499.     // DClone config
  500.     Config.StopOnDClone = false; // Go to town and idle as soon as Diablo walks the Earth
  501.     Config.SoJWaitTime = 5; // Time in minutes to wait for another SoJ sale before leaving game. 0 = disabled
  502.     Config.KillDclone = false; // Go to Palace Cellar 3 and try to kill Diablo Clone. Pointless if you already have Annihilus.
  503.     Config.DCloneQuit = false; // 1 = quit when Diablo walks, 2 = quit on soj sales, 0 = disabled
  504.  
  505.     // Monster skip config
  506.     // Skip immune monsters. Possible options: "fire", "cold", "lightning", "poison", "physical", "magic".
  507.     // You can combine multiple resists with "and", for example - "fire and cold", "physical and cold and poison"
  508.     Config.SkipImmune = ["cold and physical"];
  509.     // 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".
  510.     // You can combine multiple enchantments with "and", for example - "cursed and extra fast", "mana burn and extra strong and lightning enchanted"
  511.     Config.SkipEnchant = [];
  512.     // Skip monsters with auras. Possible options: "fanaticism", "might", "holy fire", "blessed aim", "holy freeze", "holy shock". Conviction is bugged, don't use it.
  513.     Config.SkipAura = [];
  514.     // Uncomment the following line to always attempt to kill these bosses despite immunities and mods
  515.     //Config.SkipException = [getLocaleString(2851), getLocaleString(2852), getLocaleString(2853)]; // vizier, de seis, infector
  516.  
  517.     /* Attack config
  518.      * To disable an attack, set it to -1
  519.      * Skills MUST be POSITIVE numbers. For reference see http://pastebin.com/baShRwWM
  520.      */
  521.     Config.AttackSkill[0] = -1; // Preattack skill.
  522.     Config.AttackSkill[1] = 59; // Primary skill to bosses.
  523.     Config.AttackSkill[2] = 45; // Primary untimed skill to bosses. Keep at -1 if Config.AttackSkill[1] is untimed skill.
  524.     Config.AttackSkill[3] = 59; // Primary skill to others.
  525.     Config.AttackSkill[4] = 55; // Primary untimed skill to others. Keep at -1 if Config.AttackSkill[3] is untimed skill.
  526.     Config.AttackSkill[5] = 42; // Secondary skill if monster is immune to primary.
  527.     Config.AttackSkill[6] = -1; // Secondary untimed skill if monster is immune to primary untimed.
  528.  
  529.     // Low mana skills - these will be used if main skills can't be cast.
  530.     Config.LowManaSkill[0] = -1; // Timed low mana skill.
  531.     Config.LowManaSkill[1] = -1; // Untimed low mana skill.
  532.  
  533.     /* Advanced Attack config. Allows custom skills to be used on custom monsters.
  534.      *  Format: "Monster Name": [timed skill id, untimed skill id]
  535.      *  Example: "Baal": [38, -1] to use charged bolt on Baal
  536.      *  Multiple entries are separated by commas
  537.      */
  538.     Config.CustomAttack = {
  539.         "Council Member": [49, -1] //, "Storm Caster": [49, -1]
  540.  
  541.     };
  542.  
  543.     Config.Dodge = true; // Move away from monsters that get too close. Don't use with short-ranged attacks like Poison Dagger.
  544.     Config.DodgeRange = 15; // Distance to keep from monsters.
  545.     Config.DodgeHP = 95; // Dodge only if HP percent is less than or equal to Config.DodgeHP. 100 = always dodge.
  546.     Config.BossPriority = true; // Set to true to attack Unique/SuperUnique monsters first when clearing
  547.     Config.ClearType = 0; // Monster spectype to kill in level clear scripts (ie. Mausoleum). 0xF = skip normal, 0x7 = champions/bosses, 0 = all
  548.     Config.TeleStomp = true; // Use merc to attack bosses if they're immune to attacks, but not to physical damage
  549.  
  550.     // Wereform setup. Make sure you read Templates/Attacks.txt for attack skill format.
  551.     Config.Wereform = false; // 0 / false - don't shapeshift, 1 / "Werewolf" - change to werewolf, 2 / "Werebear" - change to werebear
  552.  
  553.     // Class specific config
  554.     Config.CastStatic = 60; // Cast static until the target is at designated life percent. 100 = disabled.
  555.     Config.StaticList = ["Baal", "Diablo"]; // List of monster NAMES or CLASSIDS to static. Example: Config.StaticList = ["Andariel", 243];
  556.  
  557.     /* AutoSkill builds character based on array defined by the user and it replaces AutoBuild's skill system.
  558.      * AutoSkill will automatically spend skill points and it can also allocate any prerequisite skills as required.
  559.      *
  560.      * Format: Config.AutoSkill.Build = [[skillID, count, satisfy], [skillID, count, satisfy], ... [skillID, count, satisfy]];
  561.      *  skill - skill id number (see /sdk/skills.txt)
  562.      *  count - maximum number of skill points to allocate for that skill
  563.      *  satisfy - boolean value to stop(true) or continue(false) further allocation until count is met. Defaults to true if not specified.
  564.      *
  565.      *  See libs/config/Templates/AutoSkillExampleBuilds.txt for Config.AutoSkill.Build examples.
  566.      */
  567.     Config.AutoSkill.Enabled = false; // Enable or disable AutoSkill system
  568.     Config.AutoSkill.Save = 0; // Number of skill points that will not be spent and saved
  569.     Config.AutoSkill.Build = [];
  570.  
  571.     /* AutoStat builds character based on array defined by the user and this will replace AutoBuild's stat system.
  572.      * AutoStat will stat Build array order. You may want to stat strength or dexterity first to meet item requirements.
  573.      *
  574.      * Format: Config.AutoStat.Build = [[statType, stat], [statType, stat], ... [statType, stat]];
  575.      *  statType - defined as string, or as corresponding stat integer. "strength" or 0, "dexterity" or 2, "vitality" or 3, "energy" or 1
  576.      *  stat - set to an integer value, and it will spend stat points until it reaches desired *hard stat value (*+stats from items are ignored).
  577.      *  You can also set stat to string value "all", and it will spend all the remaining points.
  578.      *  Dexterity can be set to "block" and it will stat dexterity up the the desired block value specified in arguemnt (ignored in classic).
  579.      *
  580.      *  See libs/config/Templates/AutoStatExampleBuilds.txt for Config.AutoStat.Build examples.
  581.      */
  582.     Config.AutoStat.Enabled = false; // Enable or disable AutoStat system
  583.     Config.AutoStat.Save = 0; // Number stat points that will not be spent and saved.
  584.     Config.AutoStat.BlockChance = 0; // An integer value set to desired block chance. This is ignored in classic.
  585.     Config.AutoStat.UseBulk = true; // Set true to spend multiple stat points at once (up to 100), or false to spend singe point at a time.
  586.     Config.AutoStat.Build = [];
  587.  
  588.     // AutoBuild System ( See /d2bs/kolbot/libs/config/Builds/README.txt for instructions )
  589.     Config.AutoBuild.Enabled = false;           //  This will enable or disable the AutoBuild system
  590.  
  591.     Config.AutoBuild.Template = "BuildName";    //  The name of the build associated with an existing
  592.                                                 //  template filename located in libs/config/Builds/
  593.  
  594.     Config.AutoBuild.Verbose = true;            //  Allows script to print messages in console
  595.     Config.AutoBuild.DebugMode = true;          //  Debug mode prints a little more information to console and
  596.                                                 //  logs activity to /logs/AutoBuild.CharacterName._MM_DD_YYYY.log
  597.                                                 //  It automatically enables Config.AutoBuild.Verbose
  598. }
Add Comment
Please, Sign In to add comment