Jump to content

TheSmokie

Banned
  • Posts

    1215
  • Joined

Everything posted by TheSmokie

  1. Oh fuck that, I won’t work on anything for cata. The start of wow ending.
  2. Can you send me the fightclass? I’ll fix it for you
  3. Swipe (Bear) 8 yd range 15 Rage Instant cast Swipe nearby enemies, inflicting X damage.
  4. There a Healer Mode? @Matenia you make a new product i didnt hear about ? JK
  5. There should be swipe for bear fourm
  6. Have you tried to see if swipe (bear fourm)
  7. Want to pm me your discord and we can jump into a chat?
  8. @kamila Are you gonna give @Droidz around 50 Million to give to Blizzard and 5 years of your life behind bars?
  9. Hello @sowelu, I need some more info on what your trying to do,
  10. All fightclasses use this so your pet doesn’t go out on other units
  11. Like a every 10 mins? yeah but that would make you burn food fast,
  12. You need to play in the order you want it to go. 1, 2, 3 3 being spammed if 1 , 2 are on cd.
  13. The lua for checking pet happiness doesn’t return a value because of the server or because of the code I used?
  14. TheSmokie

    Vehicle options

    @Droidz Here a idea on how to get it working for aiming, i hope it helps. public static class Vehicle { public static bool UseButton(int num = 1) { //PetActionButton1 Lua.RunMacroText("/click [overridebar][vehicleui][possessbar,@vehicle,exists]OverrideActionBarButton" + num + ";ActionButton" + num); return true; } public static void Aim(WoWUnit unit, float precision = 0.5f, float agleDelta = 0f) { ClickToMove.CGPlayer_C__ClickToMove(unit.Position.X, unit.Position.Y, unit.Position.Z, unit.Guid, (int)ClickToMoveType.Move, precision); Thread.Sleep(Usefuls.Latency * 2); var dist = ObjectManager.Me.Position.DistanceTo2D(unit.Position); var height = unit.Position.Z - ObjectManager.Me.Position.Z; var angle = robotManager.Helpful.Math.GetAngle(dist, height); var radians = robotManager.Helpful.Math.DegreeToRadian(angle + agleDelta); AimAngle(radians); } static void AimAngle(float radians) { var minDelta = 0.035f; //~5 degree var delta = radians - CurrentAngle; int timeMs = 30; var timer = new robotManager.Helpful.Timer(5 * 1000); var delta2 = 0f; do { if (delta > 0) wManager.Wow.Helpers.Keybindings.PressKeybindings(wManager.Wow.Enums.Keybindings.PITCHUP, timeMs); else if (delta < 0) wManager.Wow.Helpers.Keybindings.PressKeybindings(wManager.Wow.Enums.Keybindings.PITCHDOWN, timeMs); delta2 = radians - CurrentAngle; if (System.Math.Abs(delta2) < minDelta) return; if (delta < 0 && delta2 >= 0) return; if (delta > 0 && delta2 <= 0) return; } while (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause && ObjectManager.Me.PlayerUsingVehicle && !timer.IsReady); } public static float CurrentAngle { get { return Lua.LuaDoString<float>("return VehicleAimGetAngle()"); } } }
  15. Yeah, I was half asleep, warmane has a bug where you can’t delete more then 3 items at once.
  16. They use a completely different loot table system and custom classes, I tried helping a friend of mine work on something for that server and was a fail,
  17. It’s because your a warlock, and use the item delete code,
  18. Its because your playing on a FUN REALM< sorry, cant help ya
  19. Test it out and leave a review if you can
  20. Your fightclass should have this option .
×
×
  • Create New...