kreamdream
New member
Not sure what happened. I respeced my pally back into FOH to do some chaos runs and now he's skipping Diablo as soon as he spawns. Any ideas?
Config.Scripts.Diablo.Enabled = true
Config.Scripts.Diablo.Entrance = true
Config.Scripts.Diablo.LastSealID = false
-- get area id -> https://github.com/kolton/d2bot-with-kolbot/blob/master/d2bs/kolbot/sdk/areas.txt
Config.Scripts.ClearAnyArea.Enabled = false
Config.Scripts.ClearAnyArea.AreaList = { }
Config.Scripts.GhostBusters.Enabled = false
Config.Scripts.GhostBusters.AreaList = { }
-- #### Character Settings ####
Config.ClassID = 3 -- [Sorceress: 1 | Paladin: 3]
Config.CharacterName = "" -- Name of the character. Bot will automatically find character and select it. **** CASE SENSITIVE ***
-- #### General Settings ####
Config.Mode = 1 -- [Single Player: 0 | Battle.net: 1]
Config.Difficulty = 2 -- [NormaL: 0 | Nightmare: 1 | Hell: 2]
Config.PublicMode = false -- Normal botting, no open tp: false | Town portal for Chaos and Baal: true
Config.GameType = 0 -- [Quick Play: 0 | Lobby: 1 (requires GameName)]
Config.GameName = "" -- Game name the bot will use. Bot will add numbers at the end automatically.
Config.GamePassword = "" -- Game password, set to "" for no password.
Config.MinGameTime = 90 -- Minimum game time in seconds. If the bot finishes the run early it will wait in town until the time is reached.
Config.MaxGameTime = 5000 -- Max game time in seconds. If the bot has not finished the run before this time is reached, it will quit the game.
Config.MakeWalk = false -- Restrict char from teleporting. Useful for low level/low mana chars.
--[[ #### Attack Setting ####
To disable an attack use -1.
Use the skill number for skill ID. See _skills.txt for skill IDs. EXAMPLE: Blizzard = 59.
You can set two kinds of spells: timed (blizzard, meteor) and untimed (fireball, chain lightning).
If you do not use timed spells, just use the untimed skill ID. ]]--
Config.AttackSkill = {
-1, -- Preattack skill
101, -- Primary skill for bosses
113, -- Primary untimed skill for bosses. Use -1 if above skill is an untimed skill
121, -- Primary skill for other monsters
113, -- Primary untimed skill for other monsters. Use -1 if above skill is an untimed skill
101, -- Alternate skill for immune monsters
113, -- Alternate untimed skill for immune monsters. Use -1 if above skill is an untimed skill
}
--[[ #### Custom Attack Setting ####
Allows custom skills to be used on custom monsters. See _monsters.txt for monster IDs
Format: [ID] = {timed skill id, untimed skill id}
Example: [156] = {38, -1} -- use Charged Bolt on Andariel ]]--
Config.CustomAttack = {
}
-- #### Low Mana Skill Setting ####
Config.LowManaSkill = {
-1, -- Skill to use when out of mana (timed)
-1, -- Second skill to use when out of mana (untimed)
}
--[[ #### Skip Immune Setting ####
Possible options: "fire", "cold", "lightning", "poison", "physical", "magic".
To skip enemies with dual immunes put both types in brackets on one line, e.g. { "cold", "fire" }. ]]--
Config.SkipImmune = {
}
--[[ #### Skip Enchant Setting ####
Possible options: "extra strong", "extra fast", "cursed", "magic resistant", "fire enchanted", "lightning enchanted",
"cold enchanted", "mana burn", "teleportation", "spectral hit", "stone skin", "multiple shots".
Can be combined with the same format as Immunities. ]]--
Config.SkipEnchant = {
}
--[[ #### Skip Aura Setting ####
Possible options: "fanaticism", "might" ]]--
Config.SkipAura = {
}
-- #### Class Settings ####
Config.Paladin.Vigor = true -- Use Vigor when running
Config.Paladin.Charge = false -- Use Charge when running
Config.Paladin.Redemption = { 45, 25 } -- Use Redemption when HP or MP percent is less than or equal to designated percent. { life, mana }
-- #### SafeCast Settings ####
-- This option should be used if you want to cast skills at a safe distance when there are many monsters.
-- Whenever the bot has to cast a skill, he wil try to find a safe position instead of standing too close to a cluster of monster.
Config.SafeCastEnabled = false -- Whether SafeCast is enabled or not. ONLY WORKS FOR SORCERESS
Config.SafeCastRadius = 5 -- What radius around the player to take in account for monsters count.
Config.SafeCastMonsterThreshold = 15 -- How many monsters has to be in the SafeCastRadius to trigger a re-position. This is weigthed against your HP. [5 = Low Gear | 10 = CTA or MaxBlock | 15 = CTA and MaxBlock]
-- #### Dodge Settings ####
Config.Dodge = true -- Move away from monsters that get too close. Don't use with short-ranged attacks.
Config.DodgeRange = 15 -- How far to move away when dodging. [Nova: 7 | Otherwise: 15]
Config.DodgeMonsterRange = 5 -- How close a monster can get before dodging. [Nova: 6 | Otherwise: 10]
Config.DodgeHP = 50 -- Dodge only if HP percent is less than or equal to designated percent.
-- #### Cast Settings ####
Config.PacketCasting = 2 -- [Disable: 0 | Teleport only: 1 | All skills: 2]
Config.PrimarySlot = -1 -- Primary weapon slot: -1 = disabled (will try to determine primary slot by using non-cta slot that's not empty), 0 = slot I, 1 = slot II
Config.PrecastRange = 20 -- Precast skills (BOs, Shields, ...) will be used when a monster is this far away.
Config.PrecastForce = false -- Enable to force precast on each new script start, otherwise will only refresh 30s before expiration.
Config.TeleStomp = true -- Use merc to attack monsters if they're immune to attacks but not to physical damage.
-- #### Clear Settings ####
Config.ClearType = 0x0 -- What kind of monsters to attack. [0x0 = all | 0x7 = champion + unique + boss | 0xF = unique + boss]
Config.BossPriority = false -- Set to true to attack Unique/SuperUnique monsters first when clearing.
Config.ClearPath.Enabled = false -- Set true to enable the bot clearing enemies while pathfinding.
Config.ClearPath.Range = 500 -- How far away to check for monsters while traveling.
Config.ClearPath.SpecType = 0x0 -- What kind of monsters to attack. [0x0 = all | 0x7 = champion + unique + boss | 0xF = unique + boss]
Config.ClearPath.Areas = { -- A list of area IDs where ClearPath will be active. If you do not put any areas in this list the bot will clear ALL areas.
-- get area id -> https://github.com/kolton/d2bot-with-kolbot/blob/master/d2bs/kolbot/sdk/areas.txt
}