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

the One last problem with dps plugin! how to place the Aoe spell.

renzorx

New Member
Joined
Jan 15, 2010
Messages
92
Reaction score
0
Now im allmost done with my masterpiece, the unholy death knight dps plugin.

Now for the problem
i cant manage to get Death and decay working.
any idea how?

the problem lies on how it is supposed to place the aoe spell.
 
PHP:
/// <summary>
/// Cast a given spell using click-to-cast
/// </summary>
/// <param name="spellName">Spell name to cast</param>
/// <param name="clickCastLocation">WoWPoint to cast the spell</param>
/// <returns></returns>
public static bool Cast(string spellName, WoWPoint clickCastLocation)
{

bool result = SpellManager.Cast(spellName);
LegacySpellManager.ClickRemoteLocation(clickCastLocation);
Utils.Log("-" + spellName, Utils.Colour("Blue"));
return result;

}
 
^^ this and if you want to click where you're targeting
PHP:
StyxWow.Me.Target.Location
is your click location i think, don't have VS open right now
 
Back
Top