Frage zu den Profilen
Frage zu den Profilen
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
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
Have you tried it? There is no reason why it wouldn't work. Just add it to your characters profile.
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Frage zu den Profilen
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
<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
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.
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" />- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Frage zu den Profilen
thanks, that is what i want.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" />
i tried this and it works verry well
Re: Frage zu den Profilen
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?
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
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
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Frage zu den Profilen
= 225rock5 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
Re: Frage zu den Profilen
It should be "melee" or "ranged". Or "" to use the classes default value.Sammy009 wrote:COMBAT_TYPE = value
- Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Frage zu den Profilen
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
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
You have 2 options;
1. Loot after every kill.
2. Loot all mobs when you have finished killing all aggro mobs.
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" />- To do this set LOOT_ALL to true in your profile.
Code: Select all
<option name="LOOT_ALL" value="true" /> - Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
- I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
- How to: copy and paste in micromacro
________________________
Quote:- “They say hard work never hurt anybody, but I figure, why take the chance.”
- Ronald Reagan
Re: Frage zu den Profilen
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
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