HEALER NPC [ MACRO ]

All about the macro plugin can be found in this forum. This forum is intended for the macro plugin only.

Moderator: Moderators

Message
Author
D-Dare-Devil
Plain Yogurt
Plain Yogurt
Posts: 67
Joined: 24 Jul 2014, 23:37
Noob?: Yes

HEALER NPC [ MACRO ]

#1 Post by D-Dare-Devil »

I've tried and tried what they used in their conversation on this topic

http://forums.openkore.com/viewtopic.php?f=32&t=209275


But my Kore keeps going to dungeon and not even try to go to NPC Healer

THIS THE MACRO-CONFIG i try to resolve. :(
automacro heal_after_dead {
hook self_died
exclusive 1
call healer
}


macro healer {
do move 59 125
do talknpc 59 125 c
release heal_after_dead
stop

}

licielg
Human
Human
Posts: 37
Joined: 17 Oct 2013, 12:45
Noob?: No

Re: HEALER NPC [ MACRO ]

#2 Post by licielg »

macro trigger when you char died?

D-Dare-Devil
Plain Yogurt
Plain Yogurt
Posts: 67
Joined: 24 Jul 2014, 23:37
Noob?: Yes

Re: HEALER NPC [ MACRO ]

#3 Post by D-Dare-Devil »

Yup... When the Kore dies, it directly go to thelockMap.

telnex
Noob
Noob
Posts: 19
Joined: 22 Jul 2014, 10:13
Noob?: Yes

Re: HEALER NPC [ MACRO ]

#4 Post by telnex »

D-Dare-Devil wrote:Yup... When the Kore dies, it directly go to thelockMap.
So that means that your macro doesn't trigger.

Instead of hook self_died may be you should try to use :

Code: Select all

automacro heal_after_dead {
hp < 10%
location MAP-WHERE-YOU-RESPAWN
exclusive 1
call healer
}

D-Dare-Devil
Plain Yogurt
Plain Yogurt
Posts: 67
Joined: 24 Jul 2014, 23:37
Noob?: Yes

Re: HEALER NPC [ MACRO ]

#5 Post by D-Dare-Devil »

Oops i think it will not work... when my Kore dies it will set its HP at 100% so it ache my head what should i type to make it work to the NPC Healer

Post Reply