• You've discovered RedGuides, an EverQuest multi-boxing and scripting community 🧙‍♀️⚙️. We want you to play several EQ characters at once, come join us and say hello! 👋

  • A TLP without truebox has thawed (Very Vanilla ready)
    Frostreaver

Problem - Turn of auto ignore mobs ?

Status
Not open for further replies.
No. This would create a different issue. If you don't add, a mob you can't pull, to the alert list. Then will just continually try and pull that same mob over and over again. You wind up with the same situation. The best thing to try and do is to set you camp in a different location where you have better LOS to the mobs you are trying to pull.
 
Your notes don't say if you're using mq2navigation or not, but if you have the option to use mq2navigation and it's associated mesh at least for your puller, in my experience it does a better job at navigating to the mob and not having LOS issues.

You do need to spend some time watching where you set your camp, the toon can get stuck going in circles around trees or rocks on rare occasions but it seems to get better if you move your camp a few feet in one direction or another.
 
Trouble is if same name of mobs are actually pullable it wont pull them... I've setup in 3 diff zones, all comes to this, it stops pulling anything after awhile. Ihave no experince with navigation..

Kiss only adds mob to ignore list in 2 ways. You do it or the pet spams a message invalid target and adds it.
 
Last edited by a moderator:
ID doesn't work cause new ids are assigned every time a mob spawns or dies and completely reset on patches or zone reset
 
Trouble is if same name of mobs are actually pullable it wont pull them... I've setup in 3 diff zones, all comes to this, it stops pulling anything after awhile. Ihave no experince with navigation..

Kiss only adds mob to ignore list in 2 ways. You do it or the pet spams a message invalid target and adds it.

Find this text at the top of the macro line 96ish
Rich (BB code):
#Event PNTarget          "#*#That is not a legal target.#*#"
delete or rem it out
Rich (BB code):
| #Event PNTarget          "#*#That is not a legal target.#*#"
 
i thinks that message can also happen if an pet tries to attack an target that just died or something else.
KA tries pretty often to add the target NULL to the ignorelist. What elso could trigger that message, because it does happen on regular mobs...
 
I had same issue I was farming low lvl mobs for items and pet was killing to fast cause it to add stuff to ignore list I removed the following and it fixed the issues.


| -------------------------------------------------------------------------------------
| SUB: Event AddToIgnore
| -------------------------------------------------------------------------------------
Sub Event_AddToIgnore(Message,string MTIgnore)
/if (!${MTIgnore.Length} || ${MTIgnore.Find[null]} || ${Spawn[${MTIgnore}].ID}==${Me.ID} ) {
/echo No NPCs detected. Nothing added to list.
/return
}
| Assign temp var list
/declare IgnoreAdd string local ${MobsToIgnore}
| If MobsToIgnore default text with the word null in it assign var spawn clean name
/if (${IgnoreAdd.Find[null]} && ${MobsToIgnore.Find[null]}) {
/varset IgnoreAdd ${Spawn[${MTIgnore}].CleanName}
} else {
/varset IgnoreAdd ${IgnoreAdd},${Spawn[${MTIgnore}].CleanName}
}
| Remove's corpse if closest match is a mob corpse
/if (${IgnoreAdd.Right[-10].Find[corpse]}) /varset IgnoreAdd ${IgnoreAdd.Right[-8]}
/if (${MobsToIgnore.Find[${Spawn[${MTIgnore}].CleanName}]}) {
/echo >> ${Spawn[${MTIgnore}].CleanName} << already on Ignore List.
/return
}
/if (${Spawn[${MTIgnore}].CleanName.Equal[null]}) {
/echo No Mob with ${MTIgnore} in Name detected.
/return
}
/if (!${MobsToIgnore.Find[${Spawn[${MTIgnore}].CleanName}]}) {
/ini "${InfoFileName}" "${ZoneName}" "MobsToIgnore" "${IgnoreAdd}"
/echo AddToIgnore -> ${Spawn[${MTIgnore}].CleanName} <- Adding to Ignore list.
}
| Reassign MobsToIgnore var the new list
/varset MobsToIgnore ${IgnoreAdd}
/return

| If mob found on ignore and not on xtarget skip
/if (${MobsToIgnore.Find[${MobName}]} && ${Select[${MobID},${Me.XTarget[1].ID},${Me.XTarget[2].ID},${Me.XTarget[3].ID},${Me.XTarget[4].ID},${Me.XTarget[5].ID},${Me.XTarget[6].ID},${Me.XTarget[7].ID},${Me.XTarget[8].ID},${Me.XTarget[9].ID},${Me.XTarget[10].ID},${Me.XTarget[11].ID},${Me.XTarget[12].ID},${Me.XTarget[13].ID}]]}==0) /return MobOnIgnoreList
 
Problem - Turn of auto ignore mobs ?
Status
Not open for further replies.

Users who are viewing this thread

Back
Top
Cart