What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Singular - A community driven All-In-One CC - It Just Plain Works - (Pt. 2)

I want to start PvP farming with my shadow priest but it doesnt work's i always get this message when it try to run the bot : "This profile does not contain any profiles fitting the character!"

What to do?
 
mark of the wild

Hi All

Anyone know how to stop a druid from auto applying MotW? i go into cat stealth then 2mins later it applies the buff and im visable!! for an hourly buff its a bit keen. I have tried turning off racial in case it was that under singular configuration in a vain attempt - its not mentioned under the class specific tab which is where i thought it might be. No bot options to configure either.

Anyone point me in the right direction? maybe even a manual hack?

thanks in advance
 
I want to start PvP farming with my shadow priest but it doesnt work's i always get this message when it try to run the bot : "This profile does not contain any profiles fitting the character!"

What to do?

I had a similar issue when I re-installed, have you loaded a profile? go to load profile button and browse for a profile - i loaded a gathering one and then it burst into life!

good luck
 
Hi All

Anyone know how to stop a druid from auto applying MotW? i go into cat stealth then 2mins later it applies the buff and im visable!! for an hourly buff its a bit keen. I have tried turning off racial in case it was that under singular configuration in a vain attempt - its not mentioned under the class specific tab which is where i thought it might be. No bot options to configure either.

Anyone point me in the right direction? maybe even a manual hack?

thanks in advance

Im not a coder but maybe you could change the druid\common.cs at line 52 and add the spell for cat stealth to this list:

Code:
|| !StyxWoW.Me.HasAnyAura("Mark of the Wild", "Embrace of the Shale Spider", "Blessing of Kings"))
which should prevent it from being cast when you are affected by stealth.
 
I want to start PvP farming with my shadow priest but it doesnt work's i always get this message when it try to run the bot : "This profile does not contain any profiles fitting the character!"

What to do?
Load a profile for your level range... Or a blank one... This message is not related to any cc
 
Here we go.

I see what it's doing, but I don't really know how I could go about fixing it. Is it still killing the mobs ok? It looks like it's just trying to cast a spell before it's really off of cooldown.
 
Why does the Blood DK use "HasAura" for Blood Plague, but "HasMyAura" for Frost Fever?
 
Why does the Blood DK use "HasAura" for Blood Plague, but "HasMyAura" for Frost Fever?

You will use HasMyAura to make sure, that your own debuff will be applied to your target.
You will use HasAura, if you do not mind, if there is a debuff from yourself. :)
 
I see what it's doing, but I don't really know how I could go about fixing it. Is it still killing the mobs ok? It looks like it's just trying to cast a spell before it's really off of cooldown.
They still get killed yes, it just looks "wrong" if there are so many errors ;)
 
Im not a coder but maybe you could change the druid\common.cs at line 52 and add the spell for cat stealth to this list:

Code:
|| !StyxWoW.Me.HasAnyAura("Mark of the Wild", "Embrace of the Shale Spider", "Blessing of Kings"))
which should prevent it from being cast when you are affected by stealth.

Id just comment it out, i added a bool in the settings for myself because its really annoying having it spam it in lfr
 
Anychance singular will add selective healing in the future?
 
Im not a coder but maybe you could change the druid\common.cs at line 52 and add the spell for cat stealth to this list:

Code:
|| !StyxWoW.Me.HasAnyAura("Mark of the Wild", "Embrace of the Shale Spider", "Blessing of Kings"))
which should prevent it from being cast when you are affected by stealth.

Hi Laria

Thanks for the advice. I tried adding "Cat Form" to the list of auras (as thats used in macros and the name of the aura button) but it didn't solve it. I thought maybe the entry [Behavior(BehaviorType.OutOfCombat)] et el maybe the issue but commenting that section out didn't work either. Commenting out the whole cs just resulted in compilation error. Commenting out [Behavior(BehaviorType.PreCombatBuffs)] didn't help. I really don't get why it spams, dropping out of cat/bear form into nightelf form is suicide.
I am not a programmer and haven?t had much experience in honorbuddy scripts etc so advice is very welcome. I know others with the same issue only they won?t post.
Many Thanks
 
They still get killed yes, it just looks "wrong" if there are so many errors ;)

I'll look in to it. Do you notice it with any other Singular CC? None of them seem to have GCD requirements (that I can tell).

>handnavi
That's what I figured. :p I just couldn't figure out why it would be different for our two diseases. Not really sure.

>BodyBag
Working on a fix to the MotW issue. I'll post if I find anything.
 
I did a little work on the Frost DK Single Target Priority/Rotation:
Code:
				Spell.Cast("Outbreak"),
				Spell.Cast("Howling Blast", ret => TalentManager.HasGlyph("Howling Blast") && StyxWoW.Me.CurrentTarget.GetAuraTimeLeft("Frost Fever", true).TotalSeconds < 6),
				Spell.Cast("Frost Fever", ret => !TalentManager.HasGlyph("Howling Blast") && StyxWoW.Me.CurrentTarget.GetAuraTimeLeft("Frost Fever", true).TotalSeconds < 6),
				Spell.Cast("Plague Strike", ret => StyxWoW.Me.CurrentTarget.GetAuraTimeLeft("Blood Plague", true).TotalSeconds < 6),
				Spell.Cast("Obliterate", ret => StyxWoW.Me.FrostRuneCount >= 1 && (StyxWoW.Me.UnholyRuneCount >= 1 || StyxWoW.Me.DeathRuneCount >= 1)),
                Spell.Cast("Obliterate", ret => StyxWoW.Me.UnholyRuneCount >= 1 && (StyxWoW.Me.FrostRuneCount >= 1 || StyxWoW.Me.DeathRuneCount >= 1)),
                Spell.Cast("Obliterate", ret => StyxWoW.Me.DeathRuneCount >= 1 && (StyxWoW.Me.FrostRuneCount >= 1 || StyxWoW.Me.UnholyRuneCount >= 1)),
				Spell.Cast("Obliterate", ret => StyxWoW.Me.HasAura("Killing Machine")),
				Spell.Cast("Frost Strike", ret => StyxWoW.Me.CurrentRunicPower >= 120),
				
				Spell.Cast("Howling Blast", ret => StyxWoW.Me.HasAura("Rime")),
				Spell.Cast("Obliterate"),
				Spell.Cast("Frost Strike"),
				Spell.Cast("Howling Blast"),

Used: Frost DPS | Winter of Discontent [4.3] - Elitist Jerks
 
Replace Common.cs in your Singular / Class Specific / Druid folder. Should fix the buffing when Prowling issue.
 

Attachments

I'll look in to it. Do you notice it with any other Singular CC? None of them seem to have GCD requirements (that I can tell).

>handnavi
That's what I figured. :p I just couldn't figure out why it would be different for our two diseases. Not really sure.

>BodyBag
Working on a fix to the MotW issue. I'll post if I find anything.

Thanks Obliv

Managed to stop the auto buffing at embarrassing times. For those interested its in the singular configuration, general tab, misc section, disable non combat behaviours (set this to TRUE). Its the precombat buffs causing the problem I guess? this setting also affects rest etc.
 
Replace Common.cs in your Singular / Class Specific / Druid folder. Should fix the buffing when Prowling issue.

Obliv

I tried your common.cs and it worked - I had a look at it but still don't understand why but hey you fixed it.
Thanks very much.

PS as it was happening outside of prowl as well
 
Back
Top