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

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Need help with CC

arenty

New Member
Joined
Jan 4, 2011
Messages
181
I am testing doing some cc's and it only do Execute and Colossus Smash why?


Code:
            else if ((Target.HealthPercent <= 19d || CanCast("Execute")))
            {
                Cast("Execute");
            }
            else if ((Target.Distance < 5 || CanCast("Colossus Smash")))
            {
                Cast("Colossus Smash");
            }
            else if ((Target.Distance < 5 || CanCast("Bloodthirst")))
            {
                Cast("Bloodthirst");
            }
            else if ((Target.Distance < 5 || CanCast("Raging Blow")))
            {
                Cast("Raging Blow");
            }

and i need help with Slam, Heroic Strike and Victory Rush.
please help :)
 
Last edited:
fpsware is to slow.
mine got really good movements but He wont use Bloodthirst and Raging blow for some odd reason, and i need help with Slam and Heroic Strike
 
Code:
else if ((Target.HealthPercent <= 19d && CanCast("Execute")))
{
	Cast("Execute");
}
else if ((Target.Distance < 5 && CanCast("Colossus Smash")))
{
	Cast("Colossus Smash");
}
else if ((Target.Distance < 5 && CanCast("Bloodthirst")))
{
	Cast("Bloodthirst");
}
else if ((Target.Distance < 5 && CanCast("Raging Blow")))
{
	Cast("Raging Blow");
}

You used "||" which is "or" meaning if just one goes true whole sentence will go true, to check for all at once going true use "&&" which is "and".
 
Last edited:
Code:
else if ((Target.HealthPercent <= 19d && CanCast("Execute")))
{
	Cast("Execute");
}
else if ((Target.Distance < 5 && CanCast("Colossus Smash")))
{
	Cast("Colossus Smash");
}
else if ((Target.Distance < 5 && CanCast("Bloodthirst")))
{
	Cast("Bloodthirst");
}
else if ((Target.Distance < 5 && CanCast("Raging Blow")))
{
	Cast("Raging Blow");
}

You used "||" which is "or" meaning if just one goes true whole sentence will go true, to check for all at once going true use "&&" which is "and".
Thank u alot, got any clues what wrong with my Slam?
else if (isAuraActive("Bloodsurge") && CanCast("Slam"))
{
Cast("Slam");
}
And do u know how i set it up so it do Heroic strike when i got 70+ rage?
 
Bloodsurge is not detected correctly, use the aura ID for that.

Concerning HS:

Code:
if (Me.CurrentRage > 70 && Spellmanager.CanCast("Heroic Strike"))
{
Spellmanager.Cast("Heroic Strike");
}
 
Bloodsurge is not detected correctly, use the aura ID for that.

Concerning HS:

Code:
if (Me.CurrentRage > 70 && Spellmanager.CanCast("Heroic Strike"))
{
Spellmanager.Cast("Heroic Strike");
}

Thank you alot
still cant fix slam, tried to take the id from wowhead did not work:(
 
Last edited:
Back
Top