-
Notifications
You must be signed in to change notification settings - Fork 52
GameHacks
MMOMinion edited this page Oct 15, 2013
·
12 revisions
- Here you will be able to find any hacks that are included in the API.
- permasprint
- Returns the status of permasprint (boolean).
- GameHacks:TeleportToXYZ(X,Y,Z)
- Teleports you towards the position X,Y,Z.
- GameHacks:TeleportToCursorPosition()
- Teleports you to the "world-position" where your mouse is hovering above.
- GameHacks:SetPermaSprint(boolean)
- Toggles permasprint.
- Radar.ObjectLeftClick
- Event that gets triggered when someone performs a left-mouse click on a object shown on the 2D radar.
- Radar.ObjectRightClick
- Event that gets triggered when someone performs a right-mouse click on a object shown on the 2D radar.
function wt_radar.ObjectLeftClick(event, id)
d("Clicked on " .. id)
end
RegisterEventHandler("Radar.ObjectLeftClick",wt_radar.ObjectLeftClick)