i think i should bring this here from old forum
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Configuring Characters: Taekwon
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Some people seem to have trouble configuring the taekwon to do multiple kicks when they do the prepare stances. I had trouble myself so I resorted to using macros to make the kicks effective. Its very simple and shouldn't cause much frustration.
Code:
Config.txt
useSelf_item Berserk Potion, Awakening Potion, Concentration Potion {
whenStatusInactive Concentration Potion
timeout 10
inLockOnly 1
}
useSelf_skill Seven Wind {
lvl 1
sp > 50
onAction attack
whenStatusInactive Seismic Weapon
inLockOnly 1
notWhileSitting 1
notInTown 1
timeout 10
disabled 1
}
useSelf_skill Seven Wind {
lvl 2
sp > 50
onAction attack
whenStatusInactive Lightning Loader
inLockOnly 1
notWhileSitting 1
notInTown 1
timeout 10
disabled 1
}
useSelf_skill Seven Wind {
lvl 3
sp > 50
onAction attack
whenStatusInactive Frost Weapon
inLockOnly 1
notWhileSitting 1
notInTown 1
timeout 10
disabled 1
}
useSelf_skill Seven Wind {
lvl 4
sp > 50
onAction attack
whenStatusInactive Flame Weapon
inLockOnly 1
notWhileSitting 1
notInTown 1
timeout 10
disabled 1
}
useSelf_skill Seven Wind {
lvl 5
sp > 50
onAction attack
whenStatusInactive Ghost Weapon
inLockOnly 1
notWhileSitting 1
notInTown 1
timeout 10
disabled 1
}
useSelf_skill Seven Wind {
lvl 6
sp > 50
onAction attack
whenStatusInactive Dark Weapon
inLockOnly 1
notWhileSitting 1
notInTown 1
timeout 10
disabled 0
}
useSelf_skill Seven Wind {
lvl 7
sp > 50
onAction attack
whenStatusInactive Aspersio
inLockOnly 1
notWhileSitting 1
notInTown 1
timeout 10
disabled 1
}
useSelf_skill Ready Turn {
lvl 1
sp > 1
whenStatusInactive Ready Turn
disabled 0
}
useSelf_skill Ready Down {
lvl 1
sp > 1
whenStatusInactive Ready Down
disabled 0
}
useSelf_skill Ready Storm {
lvl 1
sp > 1
whenStatusInactive Ready Storm
disabled 1
}
useSelf_skill Ready Counter {
lvl 1
sp > 1
whenStatusInactive Ready Counter
disabled 0
}
Code:
Macro.txt
The Macros will see the console messages "You use <Kick> on yourself" and execute the following skills accordingly.
automacro kick_Turn {
console /You use Ready Turn on yourself/
call {
do ss 417
}
}
automacro kick_Down {
console /You use Ready Down on yourself/
call {
do ss 415
}
}
automacro kick_Storm {
console /You use Ready Storm on yourself/
call {
do ss 413
}
}
automacro kick_Counter {
console /You use Ready Counter on yourself/
call {
do ss 419
}
}
from openkore old forum , post by KEKE808 .