How to aggro mob, but not kill, instead use item on it?
Posted: Sun Apr 28, 2013 2:31 am
I am doing a WP for a daily, and one of the quests requires me to walk up to a mob, get aggro, and then use the item. How do I use the item instead of kill it?
Here is the code:
And here is the clever part. Nearby there are some friendly npc's, if I can drag my killmob to them, they will attack it, mob will aggro them, instead of me, thereby allowing me to complete casting the rune without interruption. Thats what WP22 is for... Now, how do I get this done?
(I have ideas about other quests in other zones, which is similar, except mob must be dpsed down to less than 50%, but that plan builds on this one, will still need to figure that out too.)
Here is the code:
Code: Select all
<!-- # 21 --><waypoint x="a" z="b" y="c">
-- Need to target mob, preferably with non arggroed char, and cast rune, then kill
target_NPC(killmob; yrest(500)
inventory:useItem(item2use);
</waypoint>
<!-- # 22 --><waypoint x="neara" z="nearb" y="nearc"> -- previous wp, 22, drag back here, friendly npcs will take aggro
</waypoint>
(I have ideas about other quests in other zones, which is similar, except mob must be dpsed down to less than 50%, but that plan builds on this one, will still need to figure that out too.)