July 1, 20178 yr got major problem with vertical aiming with cannon MomementManger.Face ClickToMove.CGPlayer_C__ClickToMove(unit.Position.X, unit.Position.Y, unit.Position.Z, unit.Guid, (int)wManager.Wow.Enums.ClickToMoveType.Move, precistion); not working. only horizontal. tryed all ClickToMoveType is there anything i can do to aim mob in vertical ? @Droidz
July 2, 20178 yr Hello, do you have try to use wManager.Wow.Helpers.ClickOnTerrain.Pulse(new Vector3(1, 2, 3));
July 2, 20178 yr Author 1 hour ago, Droidz said: Hello, do you have try to use wManager.Wow.Helpers.ClickOnTerrain.Pulse(new Vector3(1, 2, 3)); nope. code below dont even rotate turret public static void Aim(WoWUnit unit, float precistion = 0.5f) { Thread.Sleep(Usefuls.Latency * 2); ClickOnTerrain.Pulse(unit.Position); /* ClickToMove.CGPlayer_C__ClickToMove(unit.Position.X, unit.Position.Y, unit.Position.Z, unit.Guid, (int)wManager.Wow.Enums.ClickToMoveType.Move, precistion); Thread.Sleep(Usefuls.Latency * 2); wManager.Wow.Helpers.Keybindings.PressKeybindings(wManager.Wow.Enums.Keybindings.PITCHUP); //*/ } only one thing can move turret verticaly wManager.Wow.Helpers.Keybindings.PressKeybindings(wManager.Wow.Enums.Keybindings.PITCHUP); wManager.Wow.Helpers.Keybindings.PressKeybindings(wManager.Wow.Enums.Keybindings.PITCHDOWN); but i cannot find how i can calculcate vertical rotation to target unit according to turret aim this quest: http://www.wowhead.com/quest=39801/the-splintered-fleet
December 11, 20178 yr public static void PressKey(System.Windows.Forms.Keys keys, int timeMs = 10) { Keyboard.DownKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, keys); Thread.Sleep(timeMs); Keyboard.UpKey(wManager.Wow.Memory.WowMemory.Memory.WindowHandle, keys); } if (delta > 0) PressKey(System.Windows.Forms.Keys.Insert, timeMs); else if (delta < 0) PressKey(System.Windows.Forms.Keys.Delete, timeMs); But the user must use the default key configuration On 2017/7/2 at 6:35 PM, camelot10 said: Spoiler nope. code below dont even rotate turret public static void Aim(WoWUnit unit, float precistion = 0.5f) { Thread.Sleep(Usefuls.Latency * 2); ClickOnTerrain.Pulse(unit.Position); /* ClickToMove.CGPlayer_C__ClickToMove(unit.Position.X, unit.Position.Y, unit.Position.Z, unit.Guid, (int)wManager.Wow.Enums.ClickToMoveType.Move, precistion); Thread.Sleep(Usefuls.Latency * 2); wManager.Wow.Helpers.Keybindings.PressKeybindings(wManager.Wow.Enums.Keybindings.PITCHUP); //*/ } only one thing can move turret verticaly wManager.Wow.Helpers.Keybindings.PressKeybindings(wManager.Wow.Enums.Keybindings.PITCHUP); wManager.Wow.Helpers.Keybindings.PressKeybindings(wManager.Wow.Enums.Keybindings.PITCHDOWN); but i cannot find how i can calculcate vertical rotation to target unit according to turret aim this quest: The Splintered Fleet
Create an account or sign in to comment