Page 1 of 1
Frage zu den Profilen
Posted: Sun Jul 28, 2013 4:29 am
by Sammy009
Hi,
In der default.xml wird für den Druiden nur Erdpfeil zum kämpfen angegeben.
Ich würde gerne die Mobs mit Umschlingendes Gestrüp ziehen und dann mit Erdpfeil töten.
Hat jemand eine Idee ob das geht?
Danke
Re: Frage zu den Profilen
Posted: Sun Jul 28, 2013 6:01 am
by rock5
Have you tried it? There is no reason why it wouldn't work. Just add it to your characters profile.
Re: Frage zu den Profilen
Posted: Sun Jul 28, 2013 6:43 am
by Sammy009
Yes I tried this
<skill name="DRUID_Briar_Entwinement" hotkey="MACRO" priority="90" and not melee />
<skill name="DRUID_EARTH_ARROW" hotkey="MACRO" priority="80" />
I get an xml parse error in the setting.lua
Line: 215
Column: 76
Pos: 12390
Message: not well-formed (invalid token)
The first cast i will only use it to pull the mob.
The second to kill it
Re: Frage zu den Profilen
Posted: Sun Jul 28, 2013 8:00 am
by rock5
Firstly, as you can see from all other skills, "DRUID_Briar_Entwinement" should be all capitals. Secondly, "and not melee" shouldn't be there.
Briar Entwinement should only get used once because it applies a debuff to the target so the bot wont reuse the skill until the debuff runs out. If you are having trouble with it getting used more than once such as with long fights then you can add
maxuse="1" to make sure it only uses it once.
Code: Select all
<skill name="DRUID_BRIAR_ENTWINEMENT" hotkey="MACRO" priority="90" maxuse="1" />
Re: Frage zu den Profilen
Posted: Sun Jul 28, 2013 9:43 am
by Sammy009
rock5 wrote:Firstly, as you can see from all other skills, "DRUID_Briar_Entwinement" should be all capitals. Secondly, "and not melee" shouldn't be there.
Briar Entwinement should only get used once because it applies a debuff to the target so the bot wont reuse the skill until the debuff runs out. If you are having trouble with it getting used more than once such as with long fights then you can add
maxuse="1" to make sure it only uses it once.
Code: Select all
<skill name="DRUID_BRIAR_ENTWINEMENT" hotkey="MACRO" priority="90" maxuse="1" />
thanks, that is what i want.
i tried this and it works verry well

Re: Frage zu den Profilen
Posted: Tue Jul 30, 2013 12:31 pm
by Sammy009
another problem
the cast works verry well. but the Problem is, the cast has a range from 180. My Char runs near to the mob and cast then the spell.
What must I do, that the cast run from max range to pull the mob?
Re: Frage zu den Profilen
Posted: Tue Jul 30, 2013 12:40 pm
by rock5
A druid is a ranged attacker. It shouldn't be moving into melee range unless you have been fiddling with the settings. Check the following profile options.
- COMBAT_TYPE
COMBAT_DISTANCE
MAX_TARGET_DIST
Re: Frage zu den Profilen
Posted: Tue Jul 30, 2013 2:41 pm
by Sammy009
rock5 wrote:A druid is a ranged attacker. It shouldn't be moving into melee range unless you have been fiddling with the settings. Check the following profile options.
- COMBAT_TYPE = value
COMBAT_DISTANCE = 200
MAX_TARGET_DIST
= 225
Re: Frage zu den Profilen
Posted: Tue Jul 30, 2013 4:16 pm
by rock5
Sammy009 wrote:COMBAT_TYPE = value
It should be "melee" or "ranged". Or "" to use the classes default value.
Re: Frage zu den Profilen
Posted: Mon Nov 18, 2013 10:55 am
by Sammy009
I´ve got an other question. If pulled the mobs for the distant, but when there are a lot of mobs in my range, the Char killed one, than go to the next target and the next. But my char get not the loot from the first kills. When all targets dead it goes to the lat kill and get the loot.
What must I do, that my Char killed a mob, looted and than get the next target, killed ....... looted.
In the Moment I missed a lot of loots.
Thanks
Re: Frage zu den Profilen
Posted: Mon Nov 18, 2013 11:05 am
by rock5
You have 2 options;
1. Loot after every kill.
- To do this set LOOT_IN_COMBAT to true in your profile.
Code: Select all
<option name="LOOT_IN_COMBAT" value="true" />
2. Loot all mobs when you have finished killing all aggro mobs.
- To do this set LOOT_ALL to true in your profile.
Code: Select all
<option name="LOOT_ALL" value="true" />
Re: Frage zu den Profilen
Posted: Mon Nov 18, 2013 11:28 am
by Sammy009
1. Loot after every kill.
To do this set LOOT_IN_COMBAT to true in your profile.
Code:
<option name="LOOT_IN_COMBAT" value="true" />
This is activated in my profil
2. Loot all mobs when you have finished killing all aggro mobs.
To do this set LOOT_ALL to true in your profile.
Code:
<option name="LOOT_ALL" value="true" />
This is false in my profil. I change this in true and try this
That´s it it ----- It works fine
Thanks