10-16-2013, 12:18 AM
(10-15-2013, 10:26 PM)fxfire Wrote: z0mg asked me to upload this for you, you can now use:
https://github.com/MMOMinion/FFXIVMinion/wiki/GameHacks
GameHacks:TeleportToCursorPosition()
Teleports you to the "world-position" where your mouse is hovering above.
and for setting a hotkey / doing that only when a key is pressed, you can use:
MeshManager:IsKeyPressed(160)
160 is the integer value of the KeyState, here are all (HEX!!) values you can use: http://msdn.microsoft.com/en-us/library/...85%29.aspx
combining those two and you will have a click2teleport ;)
This might be a little out of my league, haha im trying so hard to get this to work.
I made a checkbox, so when its activated, then the code works. But i have no clue how to put this into a function, nor do i know where to put the KeyPressed.
I started out with
Code:
function Teleport.Move3()
if ( MeshManager:IsKeyPressed(160) ) then
GameHacks:TeleportToCursorPosition()
end
end
[code]
But this doesnt work. Could i get a little help please :D