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

LazyRaider - Holy Cow!

Status
Not open for further replies.
it wont load the CC for me, get the message it cant find CustomClasses\Config\HolyUrgent_dispels.ini'.
 
it wont load the CC for me, get the message it cant find CustomClasses\Config\HolyUrgent_dispels.ini'.


The CC still loads. If you dont have this file, click on the class config and click save. It will create it for you. The CC still functions.

You could also create a blank text file called "HolyUrgent_dispels.ini", but you should not have to. The message is just b/c you havent saved the urgent dispels yet.
 
Last edited:
It's hanging a bit when trying to use trinkets that can't be used. For example, when you have something like Figurine - King of Boars in the first trinket slot, everything is fine, but if you are using something like Heart of the Unliving (which has no on use effect), this happens:

Code:
[9:37:31 PM:833] Spell_C::CastSpell(20473, 0, 0x700000001A7E592, 0) [323]
[9:37:38 PM:892] System.NullReferenceException: Object reference not set to an instance of an object.
   at HolyPaladinCC.HolyPaladinCC.Self() in e:\My Documents\Quick Launch\Apps\Dem Bros\CustomClasses\HolyCow\HolyPaladinCC.cs:line 227
   at HolyPaladinCC.HolyPaladinCC.Combat() in e:\My Documents\Quick Launch\Apps\Dem Bros\CustomClasses\HolyCow\HolyPaladinCC.cs:line 119
   at HolyPaladinCC.HolyPaladinCC.Pulse() in e:\My Documents\Quick Launch\Apps\Dem Bros\CustomClasses\HolyCow\HolyPaladinCC.cs:line 60
   at Styx.WoWPulsator.Pulse(PulseFlags flags)
   at Styx.Logic.BehaviorTree.TreeRoot.Tick()
   at Styx.Logic.BehaviorTree.TreeRoot.Run()
[9:37:49 PM:387] Spell_C::CastSpell(85673, 0, 0x700000001A7E592, 0) [324]

It'll cast a spell, try to use the trinket, hang and do nothing for some time, and then (usually when combat ends) start casting spells as normal to top people off. Full log attached if you want it.

Other than this, the CC is working excellently. Well done!
 

Attachments

It's hanging a bit when trying to use trinkets that can't be used. For example, when you have something like Figurine - King of Boars in the first trinket slot, everything is fine, but if you are using something like Heart of the Unliving (which has no on use effect), this happens:

Code:
[9:37:31 PM:833] Spell_C::CastSpell(20473, 0, 0x700000001A7E592, 0) [323]
[9:37:38 PM:892] System.NullReferenceException: Object reference not set to an instance of an object.
   at HolyPaladinCC.HolyPaladinCC.Self() in e:\My Documents\Quick Launch\Apps\Dem Bros\CustomClasses\HolyCow\HolyPaladinCC.cs:line 227
   at HolyPaladinCC.HolyPaladinCC.Combat() in e:\My Documents\Quick Launch\Apps\Dem Bros\CustomClasses\HolyCow\HolyPaladinCC.cs:line 119
   at HolyPaladinCC.HolyPaladinCC.Pulse() in e:\My Documents\Quick Launch\Apps\Dem Bros\CustomClasses\HolyCow\HolyPaladinCC.cs:line 60
   at Styx.WoWPulsator.Pulse(PulseFlags flags)
   at Styx.Logic.BehaviorTree.TreeRoot.Tick()
   at Styx.Logic.BehaviorTree.TreeRoot.Run()
[9:37:49 PM:387] Spell_C::CastSpell(85673, 0, 0x700000001A7E592, 0) [324]

It'll cast a spell, try to use the trinket, hang and do nothing for some time, and then (usually when combat ends) start casting spells as normal to top people off. Full log attached if you want it.

Other than this, the CC is working excellently. Well done!

oops my bad on the trinket. I was doing some testing and didnt comment out.

That null pointer you are are linking has been there forever. It doesnt actually cause a hang. Idk why it is giving the null pointer either b/c line 227 says "if(tank != null)". Just removed the trinket thing though.
 
Please add if (Me.Race == Tauren) { StopTheBot() };

I find it racist that other classes can use this.
 
Please add if (Me.Race == Tauren) { StopTheBot() };

I find it racist that other classes can use this.

i think it would be if (Me.Race != Tauren) { StopTheBot() };

:p
 
ok i went into HolySettings.cs and this is what i changed

[Setting, DefaultValue("Concentration Aura")]
public string Aura_SET { get; set; }


not sure if thats what i was supposed to do, but after doing it and restarting he still stays in Resistance...i apologize for being n00bish as this is new to me
 
No, you need to go to Custom Classes/Config and find the configuration file with your character name and holy cow on it. In there, you will see "Resistance Aura" change it to whatever you want.
 
ok i went into HolySettings.cs and this is what i changed

[Setting, DefaultValue("Concentration Aura")]
public string Aura_SET { get; set; }

not sure if thats what i was supposed to do, but after doing it and restarting he still stays in Resistance...i apologize for being n00bish as this is new to me

When you go to config folder u should see something like Holy Paladin cc-settings-yourtoonname.xml The command is not in there so I had to like manually type it in there. Type in <Aura_SET>Concentration Aura</Aura_SET>
 
When you go to config folder u should see something like Holy Paladin cc-settings-yourtoonname.xml The command is not in there so I had to like manually type it in there. Type in <Aura_SET>Concentration Aura</Aura_SET>


yeah i found it...just took me a few being newer to all this...but its working now and as soon as i try it out ill comment...thanks for all ur help XD
 
I loved UPHCC but at it's current state isn't doing what I want in PvE. Now this CC is doing what I need thank you for your work.
 
Last edited:
Hi,

How to switch off hand of protection? He did hop a main tank.. :P
 
Hi,

How to switch off hand of protection? He did hop a main tank.. :P

open holypaladin.cs and delete this:

Code:
                    if (!IsTank(tar)
                        && hp < 10
                        && CC("Hand of Protection", tar))
                    {
                        SpellManager.StopCasting();
                        C("Hand of Protection", tar);
                    }

I guess it could happen, if they didn't have their role set and you didnt have your focus set to them.
 
Status
Not open for further replies.
Back
Top