thalirium 1 Posted August 16, 2014 Share Posted August 16, 2014 So I am having some trouble with getting my fightclass to use the Dream of Cenarius procs appropriately. I have the conditional on Healing Touch that requires the buff Dream of Cenarius, but the fightclass just spams Healing Touch - ie it thinks I always have the Dream of Cenarius Proc. This one is kind of a top priority for PvP rotation, so any insight would be really helpful. Possibly check the conditional via a spell id. fragik 1 Link to comment https://wrobot.eu/forums/topic/1555-dream-of-cenarius-procs/ Share on other sites More sharing options...
Droidz 2738 Posted August 17, 2014 Share Posted August 17, 2014 Hello, I cannot help you if you don't share your fightclass. And do you have look what conditions is used on another fightclass for this spells? fragik 1 Link to comment https://wrobot.eu/forums/topic/1555-dream-of-cenarius-procs/#findComment-7997 Share on other sites More sharing options...
Ohren 106 Posted October 22, 2014 Share Posted October 22, 2014 It's something to do with buffs, I have the same issue with using Crimson Scourge on my Death Knight, it detects that you constantly have the buff on, I can't remember how I used to work around it, but I will find the LUA snippet I had, or make a new one. fragik 1 Link to comment https://wrobot.eu/forums/topic/1555-dream-of-cenarius-procs/#findComment-8436 Share on other sites More sharing options...
Ohren 106 Posted October 22, 2014 Share Posted October 22, 2014 Alright, give this a shot. Use it as a normal condition, but make sure you choose LUA script. name, rank, icon, count, debuffType, duration, expirationTime, unitCaster, isStealable, shouldConsolidate, spellId= UnitAura("player", "Dream of Cenarious");retV = count; Return value var needs to be retV and return value research needs to be 1. fragik and Ketefil 2 Link to comment https://wrobot.eu/forums/topic/1555-dream-of-cenarius-procs/#findComment-8437 Share on other sites More sharing options...
andycanadas 3 Posted November 10, 2014 Share Posted November 10, 2014 I have the same problem, when u choose the talent Dream of cenarius, it cast on u a invisible buff called "dream of cenarius", like an aura. I need to be able to set a buff id to cast healing touch with the proper "dream of cenarius" buff. fragik 1 Link to comment https://wrobot.eu/forums/topic/1555-dream-of-cenarius-procs/#findComment-8654 Share on other sites More sharing options...
andycanadas 3 Posted November 10, 2014 Share Posted November 10, 2014 The FIGHTCLASS, look at healing touch, it isnt finished there fragik 1 Link to comment https://wrobot.eu/forums/topic/1555-dream-of-cenarius-procs/#findComment-8655 Share on other sites More sharing options...
Ohren 106 Posted November 11, 2014 Share Posted November 11, 2014 Take a look at my guardian druid fight class. Healing touch works with DoC procs using the LUA I posted above. fragik 1 Link to comment https://wrobot.eu/forums/topic/1555-dream-of-cenarius-procs/#findComment-8657 Share on other sites More sharing options...
luizkim 20 Posted January 17, 2015 Share Posted January 17, 2015 In my profile have this Talent usage on proc: http://wrobot.eu/files/file/394-druid-guardian/ <FightClassSpell> <SpellName>Healing Touch</SpellName> <FightClassConditions> <FightClassCondition> <ContionType>HealthPercent</ContionType> <Param xsi:type="FightClassConditionNumber"> <Type>SmallerOrEqual</Type> <Value>90</Value> </Param> </FightClassCondition> <FightClassCondition> <ContionType>Buff</ContionType> <Param xsi:type="FightClassConditionStringBool"> <Name>Dream of Cenarius</Name> <Need>true</Need> </Param> </FightClassCondition> <FightClassCondition> <ContionType>LuaScript</ContionType> <Param xsi:type="FightClassConditionLua"> <LuaScript>isTrue = IsSpellOverlayed(5185);if (isTrue == true) then retV = "1";else retV = "0";end</LuaScript> <VarRet>retV</VarRet> <ValueRet>1</ValueRet> </Param> </FightClassCondition> </FightClassConditions> <Priority>29</Priority> <CheckIfKnowUsableDistance>false</CheckIfKnowUsableDistance> <CheckIfView>false</CheckIfView> </FightClassSpell> fragik 1 Link to comment https://wrobot.eu/forums/topic/1555-dream-of-cenarius-procs/#findComment-9232 Share on other sites More sharing options...
Ketefil 19 Posted December 12, 2015 Share Posted December 12, 2015 So further to this - i've been having the same problem with my guardian druid FC, i've updated it and added in Ohren's LUA condition but now it never casts healing touch. My most recent FC attached. Guardian Druid V1.1.1.xml Edit: nevermind after a complete restart of my client and wrobot it now works. Awesome Job Ohren Cheers. fragik 1 Link to comment https://wrobot.eu/forums/topic/1555-dream-of-cenarius-procs/#findComment-11507 Share on other sites More sharing options...
Pasterke 98 Posted March 14, 2016 Share Posted March 14, 2016 The best method is to add spell condition to Healing Touch : isSpellOverlayed true. fragik 1 Link to comment https://wrobot.eu/forums/topic/1555-dream-of-cenarius-procs/#findComment-12917 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now