Problem: Skill spamming.

International

Moderator: Moderators

mecenat
Noob
Noob
Posts: 2
Joined: 02 Dec 2010, 06:24
Noob?: Yes

Problem: Skill spamming.

#1 Post by mecenat »

Hi Openkorers.

I've searched the whole internet for clues and read the manual over and over. But I still can't seem to fix this problem.

My character spams Falcon Eyes until he reaches the > 20% SP limit I've set. And it's much annoying. I've tried the following:

Code: Select all

useSelf_skill Falcon Eyes {
	lvl 10
	sp > 20%
	whenStatusInactive Falcon Eyes
	onAction attack
}
&

Code: Select all

useSelf_skill Falcon Eyes {
	lvl 10
	sp > 20%
	whenStatusInactive Falcon Eyes
	timeout 2
	onAction attack
}
&

Code: Select all

useSelf_skill Falcon Eyes {
	lvl 10
	sp > 20%
	whenStatusInactive Falcon Eyes
	maxUses 1
	onAction attack
}


Any help is much appreciated!
rune18
Noob
Noob
Posts: 4
Joined: 12 Nov 2010, 15:20
Noob?: No

Re: Problem: Skill spamming.

#2 Post by rune18 »

i think onAction Attack is the problem it's uses falcon eyes every time it attacks a monster!?
try on removing it?

useSelf_skill Falcon Eyes {
lvl 10
sp > 20%
whenStatusInactive Falcon Eyes
}
barcode0961
Human
Human
Posts: 46
Joined: 10 Dec 2009, 02:10
Noob?: Yes

Re: Problem: Skill spamming.

#3 Post by barcode0961 »

you could give this a try, check the skill name of falcon eyes in your bot then use it and check the statuses of your bot, if its really falcon eyes or maybe still its true sight.
Learn to read its helps a lot and use the darn search button!!!
harlekairi
Noob
Noob
Posts: 6
Joined: 10 Oct 2010, 19:27
Noob?: Yes

Re: Problem: Skill spamming.

#4 Post by harlekairi »

status is EFST_TRUESIGHT not Falcon Eyes
mecenat
Noob
Noob
Posts: 2
Joined: 02 Dec 2010, 06:24
Noob?: Yes

Re: Problem: Skill spamming.

#5 Post by mecenat »

harlekairi wrote:status is EFST_TRUESIGHT not Falcon Eyes
Of course! :oops:

Thanks a lot guys!