help on concentration and tension relax skill

Philippines

Moderators: waferbaron, Moderators

Forum rules
This server is currently not maintained and tables folder (including connection info) is outdated. Read the wiki for instructions on how to update those information. Please contribute your updated info. Contact Cozzie to join the team as a regular server supporter.
nubis11
Noob
Noob
Posts: 3
Joined: 18 Dec 2010, 04:53
Noob?: Yes

help on concentration and tension relax skill

#1 Post by nubis11 »

Hey guys im new on using openkore i just read the topics here but i have a problem configuring my bot not to use Concentration while in Tension relax is this possible

useSelf_skill Concentration {
lvl 5
sp > 30
onAction
whenStatusInactive Concentration
inLockOnly 1
}

useSelf_skill Tension Relax {
lvl 1
hp < 50%
sp > 20%
stopWhenHit 1
whenStatusInactive Tension Relax
notWhileSitting 1
}
rwnath
The Way Of Human
The Way Of Human
Posts: 194
Joined: 03 Nov 2010, 05:50
Noob?: No
Location: The Philippines

Re: help on concentration and tension relax skill

#2 Post by rwnath »

Code: Select all

whenStatusInactive (tension relax status)
http://wiki.openkore.com/index.php/WhenStatusActive
Image
barcode0961
Human
Human
Posts: 46
Joined: 10 Dec 2009, 02:10
Noob?: Yes

Re: help on concentration and tension relax skill

#3 Post by barcode0961 »

what i do with tension relax is, i just add timeout like
timeout 120

that will be 2mins
Learn to read its helps a lot and use the darn search button!!!
nubis11
Noob
Noob
Posts: 3
Joined: 18 Dec 2010, 04:53
Noob?: Yes

Re: help on concentration and tension relax skill

#4 Post by nubis11 »

i already made this

useSelf_skill Concentration {
lvl 5
sp > 30
onAction
whenStatusInactive Concentration, EFST_TENSIONRELAX
inLockOnly 1
}

still aint working still continues to cast concentration while in tension relax arg :x
rwnath
The Way Of Human
The Way Of Human
Posts: 194
Joined: 03 Nov 2010, 05:50
Noob?: No
Location: The Philippines

Re: help on concentration and tension relax skill

#5 Post by rwnath »

Here's what I do:

Code: Select all

useSelf_skill Concentration {
lvl 5
sp > 10%
whenStatusInactive Action Delay, Concentration
inLockOnly 1
notWhileSitting 1
notOnAction sitAuto
}

Code: Select all

useSelf_skill Tension Relax {
lvl 1
sp >= 15
hp < 10%
whenStatusInactive Tension Relax, Action Delay
}
Reference: http://www.openkore.com/index.php/OnAction
Last edited by rwnath on 18 Dec 2010, 22:45, edited 2 times in total.
Image
nubis11
Noob
Noob
Posts: 3
Joined: 18 Dec 2010, 04:53
Noob?: Yes

Re: help on concentration and tension relax skill

#6 Post by nubis11 »

ok thanks im gonna try ot
rwnath
The Way Of Human
The Way Of Human
Posts: 194
Joined: 03 Nov 2010, 05:50
Noob?: No
Location: The Philippines

Re: help on concentration and tension relax skill

#7 Post by rwnath »

Image