Hi, I'm having a problem getting to click the button 1 on the vehicle menu on the quest "Stink Bomb Away"
I tried to use the code that droidz provided but it did not really work...
var nearHostile = ObjectManager.GetNearestWoWUnit(ObjectManager.GetWoWUnitHostile());
if (nearHostile.IsValid)
{
wManager.Wow.Helpers.ClickOnTerrain.Spell(96026, new Vector3(nearHostile.Position));
Thread.Sleep(1000);
}
it was displayed in the log but nothing was actually cast.
[F] 00:38:28 - [Spell] Cast Toss Stink Bomb (Toss Stink Bomb)
[F] 00:38:32 - [Spell] Cast Toss Stink Bomb (Toss Stink Bomb)
[F] 00:38:37 - [Spell] Cast Toss Stink Bomb (Toss Stink Bomb)
[F] 00:38:42 - [Spell] Cast Toss Stink Bomb (Toss Stink Bomb)
[F] 00:38:46 - [Spell] Cast Toss Stink Bomb (Toss Stink Bomb)
[F] 00:38:51 - [Spell] Cast Toss Stink Bomb (Toss Stink Bomb)
[F] 00:38:56 - [Spell] Cast Toss Stink Bomb (Toss Stink Bomb)
it works if I manually press "1"...
Any advice on this?