Makes sense. Thanks for your reply!
And another thing, before I stop annoying you:
When my sorceress is doing any type of runs, she uses meteor, whether it be bosses, or I'm doing baal runs, but she isn't set to use it.
NTConfig_AttackSkill[0] = 0;
NTConfig_AttackSkill[1] = 47;
NTConfig_AttackSkill[2] = 47;
NTConfig_AttackSkill[3] = 0;
NTConfig_AttackSkill[4] = 0;
NTConfig_AttackSkill[5] = 0;
NTConfig_AttackSkill[6] = 0;
I do some coding myself, and I was looking at this statement:
if(me.classid == NTC_CHAR_CLASS_SORCERESS)
{
if(NTConfig_AttackSkill[3] == 56 || NTConfig_AttackSkill[3] == 59)
return NTC_CastSkill(NTConfig_AttackSkill[3], 2, 15092, 5028);
}
I noticed 56 was the meteor skill (this is NTBot.ntj), and I was going to remove the "OR" and the check for the variable, leaving only:
if(NTConfig_AttackSkill[3] == 59)
But I'm not sure of NTC_CastSkill's paramater's.