Discussion about everything RO and OpenKore related. This place is NOT for ANY kind of support questions.
Moderator: Moderators
punkiey
Human
Posts: 22 Joined: 03 Feb 2011, 08:10
Noob?: Yes
#2
Post
by punkiey » 30 Mar 2011, 12:47
perhaps you can add "whenStatusInactive EFST_POSTDELAY" in your heal block.
chro90
Noob
Posts: 16 Joined: 22 Jan 2010, 08:24
Noob?: Yes
#3
Post
by chro90 » 31 Mar 2011, 07:32
punkiey wrote: perhaps you can add "whenStatusInactive EFST_POSTDELAY" in your heal block.
still not working....
punkiey
Human
Posts: 22 Joined: 03 Feb 2011, 08:10
Noob?: Yes
#4
Post
by punkiey » 01 Apr 2011, 06:13
could you post you skill block please.
chro90
Noob
Posts: 16 Joined: 22 Jan 2010, 08:24
Noob?: Yes
#5
Post
by chro90 » 04 Apr 2011, 09:13
i use two method....
Code: Select all
useSelf_skill Heal {
lvl 10
maxCastTime 0
minCastTime 0
hp < 80%
sp
homunculus_hp
homunculus_sp
homunculus_dead
onAction
whenStatusActive
whenStatusInactive EFST_POSTDELAY
whenFollowing
spirit
aggressives
monsters
notMonsters
stopWhenHit 0
inLockOnly 0
notWhileSitting 0
notInTown 0
timeout 0
disabled 0
inInventory
manualAI 0
}
and
Code: Select all
useSelf_skill Heal {
lvl 10
maxCastTime 0
minCastTime 0
hp < 80%
sp
homunculus_hp
homunculus_sp
homunculus_dead
onAction
whenStatusActive
whenStatusInactive Action Delay
whenFollowing
spirit
aggressives
monsters
notMonsters
stopWhenHit 0
inLockOnly 0
notWhileSitting 0
notInTown 0
timeout 0
disabled 0
inInventory
manualAI 0
}
both seems not working for me.. I need ur help guys.
punkiey
Human
Posts: 22 Joined: 03 Feb 2011, 08:10
Noob?: Yes
#6
Post
by punkiey » 04 Apr 2011, 23:16
When it came to skill block, simpler are better. Use only the conditions THAT you really need.
Delete that two blocks and try this:
Code: Select all
useSelf_skill Heal {
lvl 10
hp < 80%
sp > 40
whenStatusInactive EFST_POSTDELAY
}
P/S: You might want to download the latest svn of openkore. And, don't use two same skill blocks that doing the same thing. Just pick one, unless its for special reason.
-puNKiey
Leyana
Noob
Posts: 15 Joined: 30 May 2010, 05:06
Noob?: No
#7
Post
by Leyana » 08 Apr 2011, 01:00
How about using the 'timeout' block so your character stops trying to cast heal while it's in the after cast delay? The cast delay for heal should be 1 sec. So use:
Code: Select all
useSelf_skill Heal {
lvl 10
hp < 80%
sp > 10%
timeout 1
}
Thats what I do and it fixes things quite handily.