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

Druid CC - Expressions of interest and ideas

Status
Not open for further replies.
fps this is entirely up to you whether you want to point me in the right direction or not since it would be altering your work at least temporarily but is there anywhere that I can comment out some lines of code that will keep the cc from healing itself? I only ask this because im interested in running this in bg's mostly and it's highly suspect when im fighting somebody and at half health I all of a sudden pop out of form and start casting rejuv while getting my face smashed in. I would much prefer to just keep dps'ing and if I die then oh well i'll always rez again.

If you don't want to post it publicly here because then you might have some tools messing with the code and then not understand why it isn't working you could PM me or just tell me to shove it and figure it out myself =(
 
fps this is entirely up to you whether you want to point me in the right direction or not since it would be altering your work at least temporarily but is there anywhere that I can comment out some lines of code that will keep the cc from healing itself? I only ask this because im interested in running this in bg's mostly and it's highly suspect when im fighting somebody and at half health I all of a sudden pop out of form and start casting rejuv while getting my face smashed in. I would much prefer to just keep dps'ing and if I die then oh well i'll always rez again.

If you don't want to post it publicly here because then you might have some tools messing with the code and then not understand why it isn't working you could PM me or just tell me to shove it and figure it out myself =(

If all you want to do is disable self healing then open the Composites.cs file in notepad (or anything else) and search for #region Healing Check - All Healing Spells around there you will see the following lines:

int RejuvHealth = 70;
int RegrowthHeal = 60;
int HealingTouch = 50;

Change them all to 1. Save the file and you're done. It will never attempt to self heal.
 
thanks dude i'm looking forward to launch your Druid cc. goodluck
 
Using a lvl 71 druid, and in cat form, when it switches to heals, for some reason after , it starts casting wrath or moonfire.. Anyway to disable those spells, and force it back into cat mode.. Otherwise it burns through mana and doesn't do much damage.


If all you want to do is disable self healing then open the Composites.cs file in notepad (or anything else) and search for #region Healing Check - All Healing Spells around there you will see the following lines:

int RejuvHealth = 70;
int RegrowthHeal = 60;
int HealingTouch = 50;

Change them all to 1. Save the file and you're done. It will never attempt to self heal.
 
Using a lvl 71 druid, and in cat form, when it switches to heals, for some reason after , it starts casting wrath or moonfire.. Anyway to disable those spells, and force it back into cat mode.. Otherwise it burns through mana and doesn't do much damage.

This has been answered already in the previous posts.
 
hmm. ok so it is a reported bug, I'll wait for a fix...

This in incorrect. It will never come out of Cat / Bear form to cast Moonfire and Wrath. It will come out of Cat / Bear form to HEAL. It will then decide if it has enough mana to cast Moonfire and return to Cat / Bear form safetly. It will never cast Wrath.
 
rc there is a fix in this thread a few pages back. I won't quote it because well if your too lazy to look for yourself then sorry (not implying you are just saying it's already there without me pointing it out again)

I'll note though it's more of a work around than a fix.
 
As I said in the previous post(s), if you are Feral spec, when you pop out to heal, if (and only IF) you have enough mana it will cast Moonfire then it will swap back to Cat form. It should not be casting Wrath, its specifically told not to cast Wrath if you are Feral spec.
 
fps this is a few times now that you've denied the existence of this bug. There are a few log in the thread that show it clearly doing it although not 100% of the time. I'm not saying this is a game breaking thing that needs immediate fixing because people who care to mess with it can stop it but it is happening whether you want to deny it's existence or not.
 
fps this is a few times now that you've denied the existence of this bug. There are a few log in the thread that show it clearly doing it although not 100% of the time. I'm not saying this is a game breaking thing that needs immediate fixing because people who care to mess with it can stop it but it is happening whether you want to deny it's existence or not.

I am not denying the existence of this, I'm saying it SHOULD NOT be casting Wrath. I've done a lot of testing when this was first reported and I have never been able to replicate this bug. Infact, I was watching 2 feral Druids for over 2 hours last night and not a single time any of them cast Wrath.
 
Oh ok then I apologize I was taking it the wrong way then heh I took it as you thought we were trying to pull a fast one on you. Just from watching it happen, what I know about how code functions, and how it does it I would have to say the problem doesn't lie in the feral code it's somewhere that after the heal is cast but before the code gets back around to going into feral it's processing lines that aren't tied to the feral code and don't get cut off because of the form. Just my two cents and that is honestly just a educated guess because I haven't looked at your cc code enough to really know for certain and flowed it out.
 
as someone with a bit higher post count i would like to chime in and say that i have also seen the wrath bug happen. usually it just fires off a wrath then moonfire before switching back to cat, but once in pvp it continually casted wrath until OOM then stood around until it got out of combat. i personally fixed it by commenting wrath out of the spells file so whatever.

three spells that would be nice to have used are Survival Instincts and Berserk on 3adds or something, and Shadowmeld (nigh elf racial) as a last ditch effort. shadowmeld would be especially useful with fight or flight, you could run 20feet or so away and meld, instant out of combat.
 
Oh ok then I apologize I was taking it the wrong way then heh I took it as you thought we were trying to pull a fast one on you. Just from watching it happen, what I know about how code functions, and how it does it I would have to say the problem doesn't lie in the feral code it's somewhere that after the heal is cast but before the code gets back around to going into feral it's processing lines that aren't tied to the feral code and don't get cut off because of the form. Just my two cents and that is honestly just a educated guess because I haven't looked at your cc code enough to really know for certain and flowed it out.

In VERY simplified terms here it what happens in a combat loop:

... Do I need to heal myself? (if no, move to the next step)
... Do I need to face the target?
... Do I need to Cast Wrath
... Do I have enough mana to cast Wrath?
... If I am FERAL spec DON'T cast Wrath (All feral spec Druids leave the code here)
... Am I BALANCE or am I Human with no spec? (if no, move to the next step. If yes, cast Wrath)

MAYBE.... just maybe I've made some more changes that I have not yet uploaded.

In PVE if you are Feral spec and you don't have add and you have enough mana and the target is running then cast Wrath. But this is only in PVE and never when in a BG.
 
I have also encounted the problem a few time's were i am fighting a mob and my feral alt would change to normal form to cast rejenuvation on himself then cast moonfire then wrath then quickly jump back to cat form, someone had posted a fix a few pages back so i tested the fix and i have never had the problem since.

I am not bashing your work atall fpsware, im a admirer of all your work you release (which i hope you dont stop supporting :-) ) just giving you the head's up that they is indeed a small problem in you code mate.

anyway's ill stop all my rambling and give you another well done in this project it's amazing :)
 
I really enjoy this customclass alot, I also run the warrior one which really rocks aswell.

Just showing some love ;) Keep up the good work.
 
I had a problem, when i click on "Save Setings & Close" the window dont close and dont save my changes.. Any fix for it?
 
Last edited:
I had a problem, when i click on "Save Setings & Close" the window dont close and dont save my changes.. Any fix for it?

Seriously, that is your question? WTF! Questions like that are the reason I need the power to moderate my own threads!

LEARN TO READ OR DON'T POST IN MY THREADS!
 
Seriously, that is your question? WTF! Questions like that are the reason I need the power to moderate my own threads!

LEARN TO READ OR DON'T POST IN MY THREADS!
hey i tried to save your gui and my comp died and my girlfriend left me and my car wont start anymore... any fix for this?
kidding :P thanks for the awesome CC you got me from 60-80! +rep wewt!
 
Due to a number of ongoing issues that I, and a number of other CC & Plugin developers have been expierencing over the last few months I am no longer willing to host or support my CCs (and profiles) on the Honorbuddy forums.

Instead, I am relocating my CCs and support to the below forum (kindly provided by Wired).

http://www.liquidskies.net/forum.php?varname=Fpsware




What does this mean?
  1. There will be no negative impact for the users - you.
  2. ALL CC download links will be located on another forum
  3. ALL support (bugs/issues/suggestions/feedback) will be located on another forum.
  4. I will no longer distributed my CCs on this forum
  5. I will no longer support my CCs on this forum.
If you have bugs or issues, if you want to download my CCs this is the link you need to use.


http://www.liquidskies.net/forum.php?varname=Fpsware
 
Status
Not open for further replies.
Back
Top