Difference between revisions of "SetAllowFlyingMountLandingRequests - Game"
Jump to navigation
Jump to search
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...") |
imported>JustinOther m (Affixed version requirement) |
||
Line 1: | Line 1: | ||
[[Category:Scripting]] | [[Category:Scripting]] | ||
[[Category:Papyrus]] | [[Category:Papyrus]] | ||
'''Member of:''' [[Game Script]] | '''Member of:''' [[Game Script]] ''(Requires 1.8)'' | ||
Enables/disables player requests to have a flying mount land. | Enables/disables player requests to have a flying mount land. |
Latest revision as of 23:11, 5 November 2012
Member of: Game Script (Requires 1.8)
Enables/disables player requests to have a flying mount land.
Syntax[edit | edit source]
Function SetAllowFlyingMountLandingRequests(bool abAllow) native global
Parameters[edit | edit source]
- abAllow: If true, enables the player to request a landing, otherwise denies the ability
Return Value[edit | edit source]
None.
Examples[edit | edit source]
; Disable the player's ability to land here
Game.SetAllowFlyingMountLandingRequests(false)
; Enable the player's ability to land here
Game.SetAllowFlyingMountLandingRequests(true)