App::appGetInt: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
No edit summary
 
(3 intermediate revisions by one other user not shown)
Line 1: Line 1:
==Syntax==<syntaxhighlight lang="javascript">app.appGetInt(property);</syntaxhighlight>=== Required Arguments ===*'''property:''' String===Return value===*'''int'''==Example==<syntaxhighlight lang="javascript">todo</syntaxhighlight>==See also=={{App_function_c}}[[Category:Clientside API]][[Category:TODO: Example]]
{{ClientsideCsJsFunction}}
{{JSContainer|
<syntaxhighlight lang="javascript">mp.game.app.appGetInt(property);</syntaxhighlight>
 
{{Parameters}}
* '''property:''' {{RageType|String}}
 
===Return value===
* {{RageType|number}}
 
{{Example}}
<syntaxhighlight lang="javascript">
// todo
</syntaxhighlight>
}}
 
{{CSharpContainer|
<syntaxhighlight lang="csharp">RAGE.Game.App.AppGetInt(property);</syntaxhighlight>
 
{{Parameters}}
* '''property:''' {{RageType|String}}
 
===Return value===
* {{RageType|int}}
 
{{Example}}
<syntaxhighlight lang="csharp">
// todo
</syntaxhighlight>
}}

Latest revision as of 16:20, 24 December 2022

Client-Side Function

 C#  JavaScript


JavaScript Syntax

mp.game.app.appGetInt(property);

Parameters

  • property: String

Return value

  • number

Example

// todo



C# Syntax

RAGE.Game.App.AppGetInt(property);

Parameters

  • property: String

Return value

  • int

Example

// todo