Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Meteorb: Trouble with cold+fire immune uniques with fire immune minions
#1
Is there any way to make my sorc start attacking other monsters instead of launching fireballs/meteors at a fire+cold immune monster when everything around it is fire immune? My merc doesn't always get to it right away and sometimes makes me waste all of my potions then chicken.
Reply
#2
If it the bot works in that sequence then I would just try having orb as the primary skill. See if that works, if it doesn't I'm sure a person well more knowledgeable in code should be able to help you. laugh:
[Image: nyyzok.gif]
Reply
#3
Blue Wrote:If it the bot works in that sequence then I would just try having orb as the primary skill. See if that works, if it doesn't I'm sure a person well more knowledgeable in code should be able to help you. laugh:
your way is easier Blue, but if he wants to try something else he can use.

In your NTAttack file located D2NT31_NTBot42\D2NT\scripts\libs\common ctrl+f this next line of script
Code:
if(firstorder && NTConfig_AttackSkill[0] > 0 &&  NTA_GetResistance(target, _NTA_SkillDamage[0]) < 100 &&  me.GetSkillStatus(NTConfig_AttackSkill[0]) != 8)
and right above it put this next line of text
Code:
if(NTA_GetResistance(target, NTA_DAMAGE_COLD) > 90 && NTA_GetResistance(target, NTA_DAMAGE_FIRE) > 90 )
return 1;
this will skip all dual cold/fire immunes

if you don't want to skip a particular boss because your merc is badass and can kill him easily then just use this next line of text instead of the one right above
Code:
if((target.name != "Pindleskin") && (NTA_GetResistance(target, NTA_DAMAGE_COLD) > 90 && NTA_GetResistance(target, NTA_DAMAGE_FIRE) > 90 )
return 1;
this will not skip pindleskin if he is cold/fire dual immune. Just insert the properly spelt boss name where pindleskin is.And if you don't want to skip multiple bosses that are dual immune then use this next line of code
Code:
if((target.name != "Pindleskin || target.name != Threshsocket") && (NTA_GetResistance(target,  NTA_DAMAGE_COLD) > 90 && NTA_GetResistance(target,  NTA_DAMAGE_FIRE) > 90 )
return 1;
I hope this helps you do what you want to do


Credit goes to Evram for teaching me how to do this
[SIGPIC][/SIGPIC]Well I’m not there all the time you know Some people, some people, some people, Call it insane, yeah they call it insane, (sugar) I play russian roulette everyday, a man’s sport, With a bullet called life, yeah called life,(sugar)
Reply
#4
Sorry for the late response to this.

By "skipping" that particular boss, will it literally walk away for the boss or will it simply focus on nearby enemies?
Code:
    NTConfig_AttackSkill[0] = 56;    // First skill. Set to 0 if you won't
    NTConfig_AttackSkill[1] = 56;    // Primary skill to boss.
    NTConfig_AttackSkill[2] = 47;    // Primary untimed skill to boss. Set to 0 if you won't
    NTConfig_AttackSkill[3] = 56;    // Primary skill to others.
    NTConfig_AttackSkill[4] = 47;    // Primary untimed skill to others. Set to 0 if you won't
    NTConfig_AttackSkill[5] = 64;    // Secondary skill in case monster is immune to primary skill. Set to 0 if you won't
    NTConfig_AttackSkill[6] = 0;    // Secondary untimed skill. Set to 0 if you won't

That's the setup that makes my meteorb sorc strongest against all enemies. Meteor is used more often than ice orb.

Code:
    NTConfig_AttackSkill[0] = 56;    // First skill. Set to 0 if you won't
    NTConfig_AttackSkill[1] = 64;    // Primary skill to boss.
    NTConfig_AttackSkill[2] = 47;    // Primary untimed skill to boss. Set to 0 if you won't
    NTConfig_AttackSkill[3] = 64;    // Primary skill to others.
    NTConfig_AttackSkill[4] = 47;    // Primary untimed skill to others. Set to 0 if you won't
    NTConfig_AttackSkill[5] = 56;    // Secondary skill in case monster is immune to primary skill. Set to 0 if you won't
    NTConfig_AttackSkill[6] = 47;    // Secondary untimed skill. Set to 0 if you won't
This forces the bot to use ice orb instead of meteor as a primary attack, but will attack dual immunes with ice orb and fireball instead of meteor and fireball. This kills everything around the dual immune monster, letting my merc go to work, but it keeps me from doing the tougher areas.
Reply
#5
it just won't attack that boss. it will focus on the other monsters in the area. If you kill them too fast, i think you may have a problem with it teleporting away too fast for your merc to do its work tho....
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Having a little trouble getting barb to item find bmxrider1279 3 243 04-01-2012, 12:04 PM
Last Post: comper
  d2nt running into baals minions fenzyn 5 307 03-07-2012, 08:36 AM
Last Post: comper
  Trouble with Bot BachelorFrog 3 181 02-29-2012, 06:21 AM
Last Post: comper
  Hello everyone, I'm having a trouble with my bot, Screen Shot posted. knuckles23 1 190 12-28-2011, 01:36 AM
Last Post: Pamela
  Paladin alt attack for holy immune... quietapollo 0 210 05-31-2011, 06:48 PM
Last Post: quietapollo
  trouble with bot, please help soulcrow-SAE 0 274 05-18-2011, 04:46 AM
Last Post: soulcrow-SAE
  Meteorb Sorc vs Light Sorc raded 0 629 03-02-2011, 06:41 PM
Last Post: raded
  Trouble Saving In Hero Editor jbutler 3 700 04-27-2009, 02:28 PM
Last Post: SilverTears
  mxl stash-sacred uniques+ timnor 8 2,946 04-13-2009, 03:48 AM
Last Post: timnor
  Trouble talking to Malah? Snowflake 1 239 08-09-2008, 02:09 PM
Last Post: skidude

Forum Jump:


Users browsing this thread: 1 Guest(s)