SetAllowFlyingMountLandingRequests - Game

From the CreationKit Wiki
Revision as of 14:33, 5 November 2012 by imported>JLundin (Created page with "Category:Scripting Category:Papyrus '''Member of:''' Game Script Enables/disables player requests to have a flying mount land. == Syntax == <source lang="papyrus...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Game Script

Enables/disables player requests to have a flying mount land.

Syntax

Function SetAllowFlyingMountLandingRequests(bool abAllow) native global

Parameters

  • abAllow: If true, enables the player to request a landing, otherwise denies the ability

Return Value

None.

Examples

; Disable the player's ability to land here
Game.SetAllowFlyingMountLandingRequests(false)


; Enable the player's ability to land here
Game.SetAllowFlyingMountLandingRequests(true)

See Also