OnPlayerToggleAim

From Onset Developer Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
OnPlayerToggleAim

Type: Event
Context: Client
Introduced: v1.2.0

Description

Called when a (local) player presses the key to go in or out of the aim state. You can return false in this event to prevent the player from aiming.

You can use CancelAimImmediately to stop the player from aiming if he is in aim state already.

Syntax

OnPlayerToggleAim(toggle)
  • toggle
    true if the player wants to aim, false otherwise.

Example

AddEvent("OnPlayerToggleAim", function(toggle)
    if toggle == true then
        return false -- do not allow the player to aim
    end
end)

See also