Taekwon Skills Issues

For everything NOT server specific support. Do NOT ask for connectivity help here!.

Moderator: Moderators

Xagest
Noob
Noob
Posts: 5
Joined: 12 Jul 2011, 02:55
Noob?: No

Taekwon Skills Issues

#1 Post by Xagest »

I've tried pasting in a ton of code I've seen on this board so far to get the Taekwon skills to work automatically, but I just can't seem to get the combo to go off. Is there something wrong with this block of code?

Code: Select all

useSelf_skill Counter Kick Stance {
    lvl 1
    whenStatusInactive Counter Kick Stance
    manualAI 2
}

attackComboSlot Counter Kick {
    dist 1.5
    afterSkill Counter Kick Stance
    waitBeforeUse 0.1
    manualAI 2
}
The Counter Kick Stance block works fine, but the Counter Kick block never activates.
User avatar
kLabMouse
Administrator
Administrator
Posts: 1301
Joined: 24 Apr 2008, 12:02

Re: Taekwon Skills Issues

#2 Post by kLabMouse »

Check the Skill and Status Names first.
Also, It's better to HANDLE id, and not the actual Name.
Xagest
Noob
Noob
Posts: 5
Joined: 12 Jul 2011, 02:55
Noob?: No

Re: Taekwon Skills Issues

#3 Post by Xagest »

You mean like this?

Code: Select all

useSelf_skill 412 {
	whenStatusInactive Tornado Stance
	manualAI 2
}

attackComboSlot 413{
	afterSkill 412
	waitBeforeUse 0.5
	dist 1.5
}
Because that doesn't work either (the combo part. The selfskill works fine)
Xagest
Noob
Noob
Posts: 5
Joined: 12 Jul 2011, 02:55
Noob?: No

Re: Taekwon Skills Issues

#4 Post by Xagest »

Okay, the code does work, but it only works in Automatic Botting mode. It does not work in Manual Botting mode.