mid delay

Discussion about everything RO and OpenKore related. This place is NOT for ANY kind of support questions.

Moderator: Moderators

chro90
Noob
Noob
Posts: 16
Joined: 22 Jan 2010, 08:24
Noob?: Yes

mid delay

#1 Post by chro90 »

Hello,I need suggestions on how to disable the pop up yellow text messages in console?
I already set verbose to -1
and follow guides from http://forums.openkore.com/viewtopic.ph ... lay#p51118 and http://forums.openkore.com/viewtopic.ph ... =mid+delay

Image


at first,it works fine, but few minutes later,the message pop up again. The problem is, it consumes so much cpu usage. I hope there is another way to solve this.
punkiey
Human
Human
Posts: 22
Joined: 03 Feb 2011, 08:10
Noob?: Yes

Re: mid delay

#2 Post by punkiey »

perhaps you can add "whenStatusInactive EFST_POSTDELAY" in your heal block.
chro90
Noob
Noob
Posts: 16
Joined: 22 Jan 2010, 08:24
Noob?: Yes

Re: mid delay

#3 Post by chro90 »

punkiey wrote:perhaps you can add "whenStatusInactive EFST_POSTDELAY" in your heal block.
still not working.... :roll:
punkiey
Human
Human
Posts: 22
Joined: 03 Feb 2011, 08:10
Noob?: Yes

Re: mid delay

#4 Post by punkiey »

could you post you skill block please.
chro90
Noob
Noob
Posts: 16
Joined: 22 Jan 2010, 08:24
Noob?: Yes

Re: mid delay

#5 Post by chro90 »

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
Human
Posts: 22
Joined: 03 Feb 2011, 08:10
Noob?: Yes

Re: mid delay

#6 Post by punkiey »

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
Noob
Posts: 15
Joined: 30 May 2010, 05:06
Noob?: No

Re: mid delay

#7 Post by Leyana »

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.