• 🏆 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!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece!🔗 Click here to enter!

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