• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

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