Search the Community
Showing results for tags 'radar3d'.
-
Version 0.4.10.20
36 downloads
Check out the promo video! Tracker++ is a plugin for WRobot that has been in development since 2018 when it’s original release was known as, “WRadar”. Tracker++ will allow the user to use two basic key-binds, [Insert] and [Delete] to add and remove Target object names, or Game Object names to a list in memory (unless the user specifies to keep their lists saved to text files for each character logged in). If the player is near any of the added entities and the settings allow it -- WRobot’s Radar3D will draw lines and circles to the entities’ position from the player’s position. -
I want to draw cirlces and lines, I have this public void Draw() { Radar3D.DrawLine(_nearestPoint, ObjectManager.Me.Position, Color.Red); _path.ForEach(i => Radar3D.DrawCircle(i, 2f, Color.Green)); } If I call it every 17ms from loop, there is nothing good in my Wow window, tell me how to use it correctly.