02-17-2012, 03:47 PM
DominusMark Wrote:I have a barb that keeps using ww (151) on baal instead of conc (144). My config has him set up to use ww on everything except bosses, but it's ignoring the boss skill.
//------------------------------------------------------------------------------
// Attack Configuration
// * Change the -1's to the corresponding #'s found in /D2NT/sdk/skills.txt
// * As of Jan 17th: -1 = Disabled, 0 = Normal Attack.
//------------------------------------------------------------------------------
NTConfig_AttackSkill[0] = 144; // First skill. Maybe slow missiles
NTConfig_AttackSkill[1] = 151; // Primary skill to super unique/champion.
NTConfig_AttackSkill[2] = 151; // Primary untimed skill to super unique/champion.
NTConfig_AttackSkill[3] = 151; // Primary skill to others.
NTConfig_AttackSkill[4] = 151; // Primary untimed skill to others.
NTConfig_AttackSkill[5] = 152; // Secondary skill in case monster is immune to primary skill.
NTConfig_AttackSkill[6] = 152; // Secondary untimed skill.
NTConfig_AttackSkill[7] = 152; // Tertiary skill to everything else in case monster is immune to both primary and secondary.
NTConfig_AttackSkill[8] = 152; // Tertiary untimed skill.
NTConfig_AttackSkill[9] = 144; // Primary skill to boss (diablo/baal/meph/etc) Not immune to spells I guess.
Also, is there a quick way to get barb to quit game if baal minions are phys immune? I want to change this for only barb and not any other chars. If I remove area 131 from here, will that quit game? Or will it just skip the phys immune monsters and just stand there until chicken?
NTConfig_AreasToNotSkipImmunes = [131];
you might try this for skills
NTConfig_AttackSkill[0] = -1;
NTConfig_AttackSkill[1] = 151;
NTConfig_AttackSkill[2] = -1;
NTConfig_AttackSkill[3] = 151;
NTConfig_AttackSkill[4] = -1;
NTConfig_AttackSkill[5] = 152;
NTConfig_AttackSkill[6] = -1;
NTConfig_AttackSkill[7] = -1;
NTConfig_AttackSkill[8] = -1;
NTConfig_AttackSkill[9] = 144;
you can try to remove the 131 but not sure how that will work, or if that will just try to skip them and kill other monster - if you can send me the exact name of the the baal minions that are phys immune I can see what I can come up with
thanks