blancharke
Member
- Joined
- Jan 15, 2010
- Messages
- 225
With the latest update autoattack wasnt working anymore. Started noticing when i made a fresh toon.
Replaced this code
back with the old one and its working fine again
Replaced this code
Code:
private bool On_AutoAttack() {
string fnname = "MBC.On_AutoAttack";
MyTimer.Start(fnname);
if (!StyxWoW.Me.IsAutoAttacking && StyxWoW.Me.CurrentTarget != null && StyxWoW.Me.IsValidUnit())
{
log(" AutoAttack");
Lua.DoString("StartAttack()");
}
MyTimer.Stop(fnname);
return false;
}