Help with macro healer npc

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

Moderator: Moderators

Message
Author
chubz080511
Noob
Noob
Posts: 7
Joined: 18 Jul 2014, 01:07
Noob?: Yes

Help with macro healer npc

#1 Post by chubz080511 »

I already config my macro to heal using npc healer but it won't stop for just once it keeps on doing heal and also help that everytime i die i would use npc healer once.



heres my code

Code: Select all

automacro heal {
hp <=90%
run-once 1
call healer
}

macro healer {
do move 118 68
do talknpc 115 72 c
release all
stop
}

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

Re: Help with macro healer npc

#2 Post by licielg »

this npc healer stays in your lockmap? you send him to a coordinated but does not define any map.

try

Code: Select all

automacro heal_afeter_dead {
hook self_died
exclusive 1
call healer
}

chubz080511
Noob
Noob
Posts: 7
Joined: 18 Jul 2014, 01:07
Noob?: Yes

Re: Help with macro healer npc

#3 Post by chubz080511 »

thanks already solve it..jst change release all to release heal

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

Re: Help with macro healer npc

#4 Post by licielg »

:D

OK!

But my code trigger afther you died.

Post Reply