Warlock AoE Spells Won't Configue

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

Moderator: Moderators

Crawmerax
Noob
Noob
Posts: 1
Joined: 17 Oct 2012, 18:54
Noob?: Yes

Warlock AoE Spells Won't Configue

#1 Post by Crawmerax »

I've tried configuring both useSelf_skill and attackskillSlot for skills like Storm Gust, Frosty Misty and Jack Frost. But the bot just warps to the specified map and does nothing, but get hit by mobs and die.
I tried the following:

Code: Select all

attackskillSlot Storm Gust {
   lvl 10
   dist 10
   inLockOnly 1
   notInTown 1
   monsters Violy, Deviruchi, Succubus, Incubus, Mini Demon, Abysmal Knight, False Angel
   timeout 5
}

useSelf_skill Jack Frost {
	lvl 5
	maxCastTime 0
	minCastTime 0
	hp
	sp > 20
	isSelfSkill 1

}
P.S. My servers.txt info is up to date and my main config is as follows:

Code: Select all

attackAuto 2
attackAuto_party 1
attackAuto_onlyWhenSafe 0
attackAuto_followTarget 0
attackAuto_inLockOnly 0
attackDistance 6
attackDistanceAuto 1
attackMaxDistance 15
attackMaxRouteDistance 100
attackMaxRouteTime 4
attackMinPlayerDistance 2
attackMinPortalDistance 4
attackUseWeapon 0
attackNoGiveup 0
attackCanSnipe 1
attackCheckLOS 0
attackLooters 1
attackChangeTarget 1
aggressiveAntiKS 0
bilou
Noob
Noob
Posts: 6
Joined: 10 Nov 2012, 15:31
Noob?: No

Re: Warlock AoE Spells Won't Configue

#2 Post by bilou »

Hi,

Please refer to the file skillnametable.txt for skill names (/tables)

You will find a line with "WZ_STORMGUST#Storm_Gust#" meaning you should use "Storm_Gust" as skill name :

Code: Select all

attackskillSlot Storm_Gust {
blabla
}
Regards,
Bilou
EternalHarvest
Developers
Developers
Posts: 1798
Joined: 05 Dec 2008, 05:42
Noob?: Yes

Re: Warlock AoE Spells Won't Configue

#3 Post by EternalHarvest »

bilou wrote:You will find a line with "WZ_STORMGUST#Storm_Gust#" meaning you should use "Storm_Gust" as skill name :

Code: Select all

attackskillSlot Storm_Gust {
blabla
}
Nope.
dracus_loki
Human
Human
Posts: 29
Joined: 13 Jul 2012, 06:32
Noob?: Yes

Re: Warlock AoE Spells Won't Configue

#4 Post by dracus_loki »

hii there ,, im not very sure what has caused that behavior ,, but i can surely point out that in the skill config for jack frost if u put "isselfskill 1 " .. then the bot would keep using jack frost on himself continuously,,, try to remove that and see ,, as for the skill names they can be written as normally without an " _ "

ahh ,, editing this cause ,, for Storm gust u dont write " in lock only "" ... try removing that also ,,, might help
rocknroll
Been there done that!
Been there done that!
Posts: 118
Joined: 19 Sep 2011, 07:30
Noob?: Yes

Re: Warlock AoE Spells Won't Configue

#5 Post by rocknroll »

Well, unset the monsters block.
just monsters
it means use the skill to all monsters
Sorry, my english is very bad !
ptcarino
Plain Yogurt
Plain Yogurt
Posts: 62
Joined: 17 Jul 2010, 00:48
Noob?: No
Location: pRO Valkyrie

Re: Warlock AoE Spells Won't Configue

#6 Post by ptcarino »

distance could be one of the reasons. if you just set "dist 10" it means it won't cast storm gust unless your bot is 10 cells away from the monster. though your bot will try and get some distance away from the monster, it's still a hassle for you since there's a possibility that you can get mobbed.
set it like this

Code: Select all

attackskillSlot Storm Gust {
   lvl 10
   dist 1..10
   inLockOnly 1
   notInTown 1
   monsters Violy, Deviruchi, Succubus, Incubus, Mini Demon, Abysmal Knight, False Angel
   timeout 5
}
dist 1..10 means distance between 1 to 10. it will cast Storm Gust if the monster is within 1 to 10 cells from you :)

i have a question on this one

Code: Select all

attackAuto 2
attackAuto_party 1
attackAuto_onlyWhenSafe 0
attackAuto_followTarget 0
attackAuto_inLockOnly 0
attackDistance 6
attackDistanceAuto 1
attackMaxDistance 15
attackMaxRouteDistance 100
attackMaxRouteTime 4
attackMinPlayerDistance 2
attackMinPortalDistance 4
attackUseWeapon 0
attackNoGiveup 0
attackCanSnipe 0
attackCheckLOS 0
attackLooters 1
attackChangeTarget 1
aggressiveAntiKS 0
if attackDistanceAuto is set to 1, why is your attackDistance 6? did you set that manually or the bot did that? warlocks don't hit ranged physical attacks.
other than that it looks fine.
Image