All about the macro plugin can be found in this forum. This forum is intended for the macro plugin only.
Moderator: Moderators
chubz080511
Noob
Posts: 7 Joined: 18 Jul 2014, 01:07
Noob?: Yes
#1
Post
by chubz080511 » 18 Jul 2014, 06:19
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
Posts: 37 Joined: 17 Oct 2013, 12:45
Noob?: No
#2
Post
by licielg » 18 Jul 2014, 08:42
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
Posts: 7 Joined: 18 Jul 2014, 01:07
Noob?: Yes
#3
Post
by chubz080511 » 18 Jul 2014, 09:12
thanks already solve it..jst change release all to release heal
licielg
Human
Posts: 37 Joined: 17 Oct 2013, 12:45
Noob?: No
#4
Post
by licielg » 18 Jul 2014, 09:25
OK!
But my code trigger afther you died.