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

Need help with CC

arenty

New Member
Joined
Jan 4, 2011
Messages
181
Reaction score
0
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:
There should be three IDs, one for each rank.
Line: 126 Error: The name 'IsAuraActive' does not exist in the current context
it says that. dont think its a Rank problem imo :)


and do u got any clue how Hamstring works? :) that would be awesome :)
 
Last edited:
Back
Top