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

Request Demonhunter auto recast Preparation

windale

New Member
Joined
Jan 28, 2012
Messages
29
Reaction score
0
Is it possible to make my Demon hunter cast preparation when he is below 70% discipline?
please let me know with detail if how as i do not have any programming skills
 
something like

public TrinityPower GetBuffPower()
{
if (!Player.IsInTown)
{
if (Skills.DemonHunter.Discipline.CanCast() && Player.PrimaryResourcePct < 0.70)
return Discipline(Player.Position);
}

return DefaultBuffPower();
}

I guess.... I've spent like 10 mins on the scripts though, so I'm probably wrong. Try it and let me know what happens.
 
thank you for reply
Silly question but where do I add this which folder and file is it in the demonbuddy folder
I never added a script before
 
thank you for reply
Silly question but where do I add this which folder and file is it in the demonbuddy folder
I never added a script before

You edit whichever combat routine you're using and throw the necessary lines in with the other GetPowerBuff lines. I think.. I mean.. I've tried manipulating the combat routines like twice before and otherwise have 0 coding/scripting experience. I'm just using what's already there and adding words where I feel they're needed.
 
Back
Top