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

Singular Mage Revamped. (FROST)

Status
Not open for further replies.
This worked for me.

1. Open your common.cs in the mage singular folder (something like \HonorBuddy\Routines\Singular\ClassSpecific\Mage)
2. Find the function ShouldSummonTable it's around line 106
3. replace the function with this:
private static bool ShouldSummonTable
{
get
{
return SingularSettings.Instance.Mage().SummonTableIfInParty && SpellManager.HasSpell("Conjure Refreshment Table") &&
StyxWoW.Me.PartyMembers.Count(p => p.DistanceSqr < 40 * 40) >= 2;
}
}


Worked for me.
 
This worked for me.

1. Open your common.cs in the mage singular folder (something like \HonorBuddy\Routines\Singular\ClassSpecific\Mage)
2. Find the function ShouldSummonTable it's around line 106
3. replace the function with this:
private static bool ShouldSummonTable
{
get
{
return SingularSettings.Instance.Mage().SummonTableIfInParty && SpellManager.HasSpell("Conjure Refreshment Table") &&
StyxWoW.Me.PartyMembers.Count(p => p.DistanceSqr < 40 * 40) >= 2;
}
}


Worked for me.

This worked for me also.

+REP
 
This worked for me.

1. Open your common.cs in the mage singular folder (something like \HonorBuddy\Routines\Singular\ClassSpecific\Mage)
2. Find the function ShouldSummonTable it's around line 106
3. replace the function with this:
private static bool ShouldSummonTable
{
get
{
return SingularSettings.Instance.Mage().SummonTableIfInParty && SpellManager.HasSpell("Conjure Refreshment Table") &&
StyxWoW.Me.PartyMembers.Count(p => p.DistanceSqr < 40 * 40) >= 2;
}
}


Worked for me.

This worked for me also.

+REP
 
Fun fact, when I move this into singular for class specific mage or whatever it disables singular for ALL my other toons and I get this error


"Compiler Error: c:\Game\Honor Buddy\Routines\Singular\ClassSpecific\Mage\Common.cs(110,50) : error CS0119: 'Singular.Settings.SingularSettings.Mage()' is a 'method', which is not valid in the given context"
 
Fun fact, when I move this into singular for class specific mage or whatever it disables singular for ALL my other toons and I get this error


"Compiler Error: c:\Game\Honor Buddy\Routines\Singular\ClassSpecific\Mage\Common.cs(110,50) : error CS0119: 'Singular.Settings.SingularSettings.Mage()' is a 'method', which is not valid in the given context"


Me too, this CR doesnt work with the newest HB it seems. Any fixes availible?
 
Anyone that has it working and can send the common.cs to me? I am an idiot and can't get it to work :/
 
How To

Anyone that has it working and can send the common.cs to me? I am an idiot and can't get it to work :/

First to make things easy download Notepad++ you can easy see the lines they talk about in the above post to find it easy
open common.cs with or in notepad++ go to line 106 and there is the function
The old looks like this old.webp
changed it looks like this new.webp
and if u do it manually make sure to remove the space in the end of party " return SingularSettings.Instance.Mage().SummonTableIfInPa rty " since or fella buddy made a typo :)

And if thats not enough i upload the adjusted file here View attachment Common.cs

UPDATE: Tested and it loads now without HB closing !

Hope this help you !
 
Last edited:
How To

Double post sorry it didnt display at first even when i reloaded page sorry once again
 
Hi again ,

i got a question for mz0flick : this cc does not work in Dungeonbuddy when used to do LFR ?

on bosses it just uses " Frost Bomb > Frostfire bolt x2,x3 times and repeat , it barely casts Frostbolt and also it uses Arcane Explosion when just moving to target "
also it does not use Frostfire Bolt Proc or Icelance Proc properly !
in Dungeons it works good except for the Arcane Explosion when just moving to target !
i did not yet test this with LazyRaider . i will do this later as i am little time short atm !

UPDATE : i had some time spare so i tested this with LazyRaider same shit different problems , its not using any proc and only casts frostbolt , randomly casting FrostFire bolt .
i hope this information is any use to you.

i personally would love to see this cc work with either DungeonBuddy for LFR or LazyRaider

Any solutions available ? Thx

Anyway great work with this cc , Thx
 
Last edited:
works great. dps is phenomenal even though I'm not in full pvp gear yet.

couple things I noticed:

1) Ring of Frost is never used
2) Alter Time is never used but I understand you're addressing that
3) No Spellsteal but I understand you're addressing that
4) Evocation is rarely (if ever) used. I think the routine isn't aware of the Evocation glyph or something. I've seen it used when I have low mana, but not as a heal.
5) Frozen Orb is never used (or rarely, but I've never seen it)
6) Frost Nova is never used, but I understand you're addressing that as well
7) Cone of Cold is never used
8) Remove Curse is never used
9) Counterspell is never used

Minor problems considering how balls to the wall this routine is. Great job!
 
Last edited:
works great. dps is phenomenal even though I'm not in full pvp gear yet.

couple things I noticed:

1) Ring of Frost is never used
2) Alter Time is never used but I understand you're addressing that
3) No Spellsteal but I understand you're addressing that
4) Evocation is rarely (if ever) used. I think the routine isn't aware of the Evocation glyph or something. I've seen it used when I have low mana, but not as a heal.
5) Frozen Orb is never used (or rarely, but I've never seen it)
6) Frost Nova is never used, but I understand you're addressing that as well
7) Cone of Cold is never used
8) Remove Curse is never used
9) Counterspell is never used

Minor problems considering how balls to the wall this routine is. Great job!

Mine uses evocation, frozen orb and frost nova.
 
Compiler Error: c:\pandas\Routines\Singular\ClassSpecific\Mage\Common.cs(110,50) : error CS0119: 'Singular.Settings.SingularSettings.Mage()' is a 'method', which is not valid in the given context
 
Last edited by a moderator:
Status
Not open for further replies.
Back
Top