Page 1 of 1

Soul Linker Skill Use - Is there a problem with my code?

Posted: 29 Jul 2018, 01:00
by SLBot
Hi, Super new to this, I've poured over alot of posts from this and other sites to try and find a solution to my problem, Nothing seems to be helping

So I'm setting up an Auto Follow Soul Linker buff bot, for my hindsight Sage/Scholar, She works quite well, expect when it comes to the Soul Link, which she spams repeatedly (anywhere between 2 and 10 times :L, Looks super suspect), I'm not sure if i haven't set the right timeout or what, See attached code.


Direct Copy of Skill Blocks

######## Block options ########
# You can copy & paste any block multiple times. So if you want to
# configure two attack skills, just duplicate the attackSkillSlot block.

partySkillDistance 0..8


partySkill Kaahi {
lvl 2
dist 5
target ***********
target_whenStatusInactive Kaahi
timeout 350
}

partySkill Sage {
lvl 5
dist 3
target ************
target_isJob Sage, Scholar
target_whenStatusInactive Spirit
timeout 350
}

If you need to see more of the config.txt to help im happy to send the full file, i just have to edit chara. info before hand

Re: Soul Linker Skill Use - Is there a problem with my code?

Posted: 29 Jul 2018, 04:07
by fadreus

Code: Select all

partySkill Kaahi { <----------Unless you are married, your SL need SL spirit.
lvl 2
dist 5
target ***********
target_whenStatusInactive Kaahi
timeout 350
}

partySkill Sage { <----- Wrong Skill Name. Can use skill # if don't know spelling.
lvl 5
dist 3
target ************
target_isJob Sage, Scholar
target_whenStatusInactive Spirit <------- Wrong Status
timeout 350 <-------- Use target_timeout
}
Tips:
Write in console:
-s (to check status)
-skills (to check skill number or name)

Links:
http://openkore.com/index.php/Main_Page

Re: Soul Linker Skill Use - Is there a problem with my code?

Posted: 29 Jul 2018, 18:12
by SLBot
fadreus wrote:

Code: Select all

partySkill Kaahi { <----------Unless you are married, your SL need SL spirit.
lvl 2
dist 5
target ***********
target_whenStatusInactive Kaahi
timeout 350
}

partySkill Sage { <----- Wrong Skill Name. Can use skill # if don't know spelling.
lvl 5
dist 3
target ************
target_isJob Sage, Scholar
target_whenStatusInactive Spirit <------- Wrong Status
timeout 350 <-------- Use target_timeout
}
Tips:
Write in console:
-s (to check status)
-skills (to check skill number or name)

Links:
http://openkore.com/index.php/Main_Page
My SL is married to my Sage, should have mentioned that sorry.
Cheers for the help, ill go through and find the codes i need

UPDATE: Works like a charm, Again thanks for your help <3