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

whats wrong with this code

shootyz

Member
Joined
Jan 12, 2011
Messages
92
Reaction score
2
Can somebody pls tell me whats wrong with these lines ?

// Blackout Kick for damage
if ((!Me.Auras.ContainsKey("Tiger Power") && Me.Auras["Tiger Power"].StackCount == 3 && Cooldown("Fists of Fury")
&& Me.CurrentChi >= 2 && Me.CurrentTarget.IsWithinMeleeRange || Me.Auras["Combo Breaker: Blackout Kick"])
CastSpell("Blackout Kick");


specially with this part : || Me.Auras["Combo Breaker: Blackout Kick"])

im getting \Honorbuddy 2.5.6296.463\Routines\Janmonk\Rotations.cs(115,126) : error CS1026: ) erwartet. all the time
 
add a ")" after Me.CurrentTarget.IsWithinMeleeRange and before "||"

That should help you out.

Greetings
 
Back
Top