• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

So is there finally proper native function for mouse coordinates ?

Status
Not open for further replies.
Level 10
Joined
Jan 13, 2017
Messages
88
There is a new Mouse event, you can use EVENT_PLAYER_MOUSE_MOVE.
And then fetch it in the event using:

native BlzGetTriggerPlayerMouseX takes nothing returns real
native BlzGetTriggerPlayerMouseY takes nothing returns real
native BlzGetTriggerPlayerMousePosition takes nothing returns location

Ofc you can save this to a variable to fetch it at any time.
Keep in mind that this event is Synced, so there is gonna be a delay.
 
Level 6
Joined
Dec 29, 2019
Messages
82
There is a new Mouse event, you can use EVENT_PLAYER_MOUSE_MOVE.
And then fetch it in the event using:

native BlzGetTriggerPlayerMouseX takes nothing returns real
native BlzGetTriggerPlayerMouseY takes nothing returns real
native BlzGetTriggerPlayerMousePosition takes nothing returns location

Ofc you can save this to a variable to fetch it at any time.
Keep in mind that this event is Synced, so there is gonna be a delay.

Yeah thanks a lot... this solved my problem :) i only needed something to give me world "location" of cursor position for custom Quickcast system and BlzGetTriggerPlayerMousePosition() works just like that.
 
Status
Not open for further replies.
Top