Help
Re: Help
Check this setting in your profile
If you want to attack mobs more than 10 levels below yours, then increase that number.
Code: Select all
<option name="TARGET_LEVELDIF_BELOW" value="10" />
- 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: Help
Code: Select all
<option name="TARGET_LEVELDIF_ABOVE" value="4" />
<option name="TARGET_LEVELDIF_BELOW" value="13" />
Re: Help
Are you sure it's using the profile you think it is using? Maybe it's using a different profile than you think and it's set to 10.
- 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: Help
help me too please... im tired in experimenting but still failed
i want to summon "WARDEN_SUMMON_SPIRIT_OF_THE_OAK" to get buff "WARDEN_HEART_OF_THE_OAK" then summon "WARDEN_SUMMON_SPIRIT_OF_THE_OAK" but only summoning Chiron then trying to summon spirit of oak this the part of my profile
<skills_warden>
<skill name="SCOUT_VAMPIRE_ARROWS" hotkey="MACRO" priority="100" />
<skill name="SCOUT_SHOT" hotkey="MACRO" priority="90" />
<skill name="WARDEN_MOVEMENT_RESTRICTION" hotkey="MACRO" priority="70" />
<skill name="WARDEN_ENERGY_ABSORB" hotkey="MACRO" priority="50" inbattle="true" hpper="25" />
<skill name="WARDEN_ELVEN_PRAYER" hotkey="MACRO" priority="1" />
<skill name="WARDEN_BRIAR_SHIELD" hotkey="MACRO" priority="140" rebuffcut="75" inbattle="false" />
<skill name="WARDEN_SUMMON_CHIRON_THE_CENTAUR" hotkey="MACRO" priority="1" />
<skill name="WARDEN_HEART_OF_THE_OAK" hotkey="MACRO" priority="1" />
<skill name="WARDEN_SUMMON_SPIRIT_OF_THE_OAK" hotkey="MACRO" priority="1" />
</skills_warden>
<skills_druid>
<skill name="DRUID_RECOVER" modifier="" hotkey="VK_2" priority="90" hpper="30" />
<skill name="DRUID_EARTH_ARROW" modifier="" hotkey="VK_3" priority="80" />
</skills_druid>
<onLoad><![CDATA[
runicthorn()
startGMDetect()
registerTimer("summon", minutesToTimer(15), function () player:queueSkill("WARDEN_SUMMON_SPIRIT_OF_THE_OAK") end);
]]></onLoad>
<onDeath><![CDATA[
-- Additional Lua code to execute on death
-- pauseOnDeath(); -- Stop the script
-- player:logout(); -- logout
]]></onDeath>
<onLeaveCombat>
runicthorn2()
player:update()
if 50 > (player.Pet.HP/player.Pet.MaxHP * 100) then
player:target( player.Pet )
player:cast("WARDEN_ELVEN_PRAYER")
yrest(1000)
end
catchCavy()
</onLeaveCombat>
<onSkillCast><![CDATA[
if( arg1.Name == "WARDEN_SUMMON_SPIRIT_OF_THE_OAK" ) then
player:queueSkill("WARDEN_HEART_OF_THE_OAK");
player:queueSkill("WARDEN_SUMMON_CHIRON_THE_CENTAUR");
end
]]></onSkillCast>
</profile>
i want to summon "WARDEN_SUMMON_SPIRIT_OF_THE_OAK" to get buff "WARDEN_HEART_OF_THE_OAK" then summon "WARDEN_SUMMON_SPIRIT_OF_THE_OAK" but only summoning Chiron then trying to summon spirit of oak this the part of my profile
<skills_warden>
<skill name="SCOUT_VAMPIRE_ARROWS" hotkey="MACRO" priority="100" />
<skill name="SCOUT_SHOT" hotkey="MACRO" priority="90" />
<skill name="WARDEN_MOVEMENT_RESTRICTION" hotkey="MACRO" priority="70" />
<skill name="WARDEN_ENERGY_ABSORB" hotkey="MACRO" priority="50" inbattle="true" hpper="25" />
<skill name="WARDEN_ELVEN_PRAYER" hotkey="MACRO" priority="1" />
<skill name="WARDEN_BRIAR_SHIELD" hotkey="MACRO" priority="140" rebuffcut="75" inbattle="false" />
<skill name="WARDEN_SUMMON_CHIRON_THE_CENTAUR" hotkey="MACRO" priority="1" />
<skill name="WARDEN_HEART_OF_THE_OAK" hotkey="MACRO" priority="1" />
<skill name="WARDEN_SUMMON_SPIRIT_OF_THE_OAK" hotkey="MACRO" priority="1" />
</skills_warden>
<skills_druid>
<skill name="DRUID_RECOVER" modifier="" hotkey="VK_2" priority="90" hpper="30" />
<skill name="DRUID_EARTH_ARROW" modifier="" hotkey="VK_3" priority="80" />
</skills_druid>
<onLoad><![CDATA[
runicthorn()
startGMDetect()
registerTimer("summon", minutesToTimer(15), function () player:queueSkill("WARDEN_SUMMON_SPIRIT_OF_THE_OAK") end);
]]></onLoad>
<onDeath><![CDATA[
-- Additional Lua code to execute on death
-- pauseOnDeath(); -- Stop the script
-- player:logout(); -- logout
]]></onDeath>
<onLeaveCombat>
runicthorn2()
player:update()
if 50 > (player.Pet.HP/player.Pet.MaxHP * 100) then
player:target( player.Pet )
player:cast("WARDEN_ELVEN_PRAYER")
yrest(1000)
end
catchCavy()
</onLeaveCombat>
<onSkillCast><![CDATA[
if( arg1.Name == "WARDEN_SUMMON_SPIRIT_OF_THE_OAK" ) then
player:queueSkill("WARDEN_HEART_OF_THE_OAK");
player:queueSkill("WARDEN_SUMMON_CHIRON_THE_CENTAUR");
end
]]></onSkillCast>
</profile>
Re: Help
So you are saying you want to summon Spirit of th Oak so you can cast Heart of the Oak then you want to summon Chiron the Centaur. Is that right.
The problem is, no summon skill will cast as long as there is a pet still out. So you will need to do a regular check and do it manaully.
Maybe onleavecombat you could do.
I'm not sure of the difference between 'cast' and 'queueSkill'.
I would add 'autouse="false"' to "WARDEN_SUMMON_SPIRIT_OF_THE_OAK" and "WARDEN_HEART_OF_THE_OAK" to stop it trying to cast automatically.
And please use Code tags when posting code in the future.
The problem is, no summon skill will cast as long as there is a pet still out. So you will need to do a regular check and do it manaully.
Maybe onleavecombat you could do.
Code: Select all
if not player:hasBuff("Heart of the Oak") then
player:cast("WARDEN_SUMMON_SPIRIT_OF_THE_OAK");
player:cast("WARDEN_HEART_OF_THE_OAK");
player:cast("WARDEN_SUMMON_CHIRON_THE_CENTAUR");
end
I would add 'autouse="false"' to "WARDEN_SUMMON_SPIRIT_OF_THE_OAK" and "WARDEN_HEART_OF_THE_OAK" to stop it trying to cast automatically.
Code: Select all
<skill name="WARDEN_HEART_OF_THE_OAK" hotkey="MACRO" priority="1" autouse="false" />
<skill name="WARDEN_SUMMON_SPIRIT_OF_THE_OAK" hotkey="MACRO" priority="1" autouse="false" />
- 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: Help
Beni wrote:my warden summon SPIRIT_OF_THE_OAK again and again..how to fix this..to summon just once? ty
did you try??
Code: Select all
<skill name="WARDEN_SUMMON_SPIRIT_OF_THE_OAK" hotkey="MACRO" priority="110" autouse="false" />
Re: Help
Is it because it tries to move as soon as it starts casting the summon?
- 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
Who is online
Users browsing this forum: No registered users and 7 guests