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 think someone broke it, I get
Code:
Could not compile CC from D:\Hbuddy\CustomClasses\Singular!
File: Spell.cs Line: 68 Error: Cannot convert lambda expression to type 'TreeSharp.Composite' because it is not a delegate type
File: Spell.cs Line: 70 Error: The best overloaded method match for 'Styx.Logic.Combat.SpellManager.CanCast(Styx.Logic.Combat.WoWSpell, Styx.WoWInternals.WoWObjects.WoWUnit, bool, bool)' has some invalid arguments
File: Spell.cs Line: 70 Error: Argument '1': cannot convert from 'string' to 'Styx.Logic.Combat.WoWSpell'

at Hbuddy startup, Hbuddy version 4620 which is the newest stable version afaik.

The new Singular Version only works with HB 48++ (or 49++)
 
But i hate the new HB ... almost everyone does it's a totally inefficient GUI and a test version. Why would they make singular for it if it's still a test version?

whats the latest revision of Singular for the 'old' HB ?
 
Last edited:
I am wondering who is actively developping Singular? I noticed that there arent many updates and allthough for instances its working quite well in terms of grinding it could have quite some polishing. I posted some updates here but none of them got incorperated or even a reaction on. In lack of a better solution I just edited my checkout version and merge that couple of times a new version comes out.

So who is actively developing Singular?
 
i dont know if its just me but the priest will no drink just keeps on pulling
 
But i hate the new HB ... almost everyone does it's a totally inefficient GUI and a test version. Why would they make singular for it if it's still a test version?

whats the latest revision of Singular for the 'old' HB ?

Try revision 344 or 343, one of those should work
 
ok something updated not it drinks but will not let mind flay finish before it recast it
 
ok something updated not it drinks but will not let mind flay finish before it recast it

In spell.cs add "StyxWoW.Me.NonChanneledCastingSpellId == StyxWoW.Me.CastingSpellId &&" as a check after "StyxWoW.Me.CurrentTarget != null &&"

Or just replace it with the one below :)

Benn trying to get this applied for ages...
 

Attachments

In spell.cs add "StyxWoW.Me.NonChanneledCastingSpellId == StyxWoW.Me.CastingSpellId &&" as a check after "StyxWoW.Me.CurrentTarget != null &&"

Or just replace it with the one below :)

Benn trying to get this applied for ages...

Sorry it took so long. I've tested and committed the changes.
 
For some reason my frost mage wants to run to the mob/player before it attacks. Pull range is set to 30 yards.
 
Just wanted to mention frost dk pvp works nicely with this cc !!

If I could make one request it would be to make it use chains of ice a lot more to stop runners :)
 
My paladin is tearing through anything I put him against, but I notice that he doesn't seem to use seal of insight at all to get his mana back up. Not that he has any down-time, but his DPS drops significantly once his mana drops below 20%.

Any suggestions on where or what to add to get him to cast seal of insight if we have low mana / health?
 
What Class are you?: Mage
What Spec are you?: Arcane
What 'context' is the bot in? (Instance, BG, Normal): Normal
What level are you?: 85
What revision of Singular are you using?: 348
Have you made any modifications to Singular?: No
Are you using a branched build, or the trunk build? (Only viable for developers): No
What version of Honorbuddy are you using?: v2.0.0.4910

1. Mage is pulling by running into its target. It does not matter what the pull range is set at.
2. Casting frost nova, and trying to get away from the frozen target often makes the bot spin like crasy. Running in circles.

The two errors above pretty much makes the Mage version of Singular impossible to use :- (
 

Attachments

Code:
                Spell.Cast("Aimed Shot", ret => StyxWoW.Me.CurrentTarget.HealthPercent > 80 || Unit.HasAura(StyxWoW.Me, "Fire!", 1)),

I have tried so many combinations of the "Fire!" proc and I still cannot get it to work. I've been having trouble with it for almost 2 weeks now and nothing seems to work. If anyone can tell me how to get Aimed Shot to be cast on a Fire! proc please let me know I have been having so much trouble with it.
 
Hey guys, was wondering if someone could change the ()pull for combat rogues to make it use recuperate instead of slice and dice?
 
Code:
                Spell.Cast("Aimed Shot", ret => StyxWoW.Me.CurrentTarget.HealthPercent > 80 || Unit.HasAura(StyxWoW.Me, "Fire!", 1)),

I have tried so many combinations of the "Fire!" proc and I still cannot get it to work. I've been having trouble with it for almost 2 weeks now and nothing seems to work. If anyone can tell me how to get Aimed Shot to be cast on a Fire! proc please let me know I have been having so much trouble with it.

Have you tried duration >1 that almost all ways works; and you could always use the aura Id if all else fails at-least you know your correct then; i very much doubt it counts as a stack becuase its a single buff, you should just gain an active aura with duration. If you grab profiletool by raphus you can track your active aura's to work it out (the id i posted is correct on wowhead at least)

StyxWoW.Me.ActiveAuras["Fire!"].TimeLeft.TotalSeconds > 1

or maybe

StyxWoW.Me.ActiveAuras[81541].TimeLeft.TotalSeconds > 1

Note i hope i got it correct just writing in the browser not in VS
 
Have you tried duration >1 that almost all ways works; and you could always use the aura Id if all else fails at-least you know your correct then; i very much doubt it counts as a stack becuase its a single buff, you should just gain an active aura with duration. If you grab profiletool by raphus you can track your active aura's to work it out (the id i posted is correct on wowhead at least)

StyxWoW.Me.ActiveAuras["Fire!"].TimeLeft.TotalSeconds > 1

or maybe

StyxWoW.Me.ActiveAuras[81541].TimeLeft.TotalSeconds > 1

Note i hope i got it correct just writing in the browser not in VS

I appreciate your help, but I could not get it to work. "Fire!" was not recognized by honorbuddy and when I used
Code:
		Spell.Cast("Aimed Shot", ret => StyxWoW.Me.ActiveAuras[82926].TimeLeft.TotalSeconds > 1),
I got
Could not find a routine fitting for your class. Please make sure you have a proper combat class routine in your folder, and restart Honorbuddy.

Also note I changed the spell ID to 82926 which is the proper spell ID for the Fire! proc.

Fire! - Spell - World of Warcraft
 
Back
Top