07-30-2010, 04:05 AM
nerull Wrote:I only removed the "&& [EnhancedDefense] >= 5" and changed the "&& [Quality] == superior" to ">=normal"..hmm mby >=normal includes magic, dunno how its coded mby try
So my line is like this:
"[Name] == Monarch && [Quality] >= normal && [Flag] != ethereal # ([Sockets] == 0 || [Sockets] == 4) // Phoenix or Spirit"
With that, I should be able to pick any normal and superior Monarch, right? Or should I change the "[Quality] >= normal" to "([Quality] == normal || [Quality] == superior)"?
But anyway, my magic/rare is double slashed and the file that I editted is the one being used [checked at the char bot file]..
It is running smoothly, the only setback is that.. it still picks magic/rare monarch.. =/
"[Name] == Monarch && [Quality] >= normal && [Quality] != magic && [Flag] != ethereal # ([Sockets] == 0 || [Sockets] == 4) // Phoenix or Spirit"
but dunno if this works or if it will crash the bot cause of 2x [Quality] argument
btw my bot still wont atc any monsters....
//------------------------------------------------------------------------------
// Attack configuration
//------------------------------------------------------------------------------
NTConfig_AttackSkill[0] = 0; // First skill. Set to 0 if you won't
NTConfig_AttackSkill[1] = 0; // Primary skill to boss.
NTConfig_AttackSkill[2] = 0; // Primary aura to boss. Set to 0 if you won't
NTConfig_AttackSkill[3] = 0; // Primary skill to others.
NTConfig_AttackSkill[4] = 0; // Primary aura to others. Set to 0 if you won't
NTConfig_AttackSkill[5] = 0; // Secondary skill in case monster is immune to primary skill. Set to 0 if you won't
NTConfig_AttackSkill[6] = 0; // Secondary aura. Set to 0 if you won't
NTConfig_ClearPosition = true; // Set to true if you want to clear area after killing boss.
0 is for normal meelee atc or is this wrong?