Difference between revisions of "SetSteamStat"

From The Official Visionaire Studio: Adventure Game Engine Wiki
(Created page with "<div class="toccolours mw-collapsible mw-collapsed" style="background: #f0f0f0; border: 1px dashed darkgrey" width="100%"> <b>Command History</b> <div class="mw-collapsible-co...")
 
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<div class="toccolours mw-collapsible mw-collapsed" style="background: #f0f0f0; border: 1px dashed darkgrey" width="100%">
+
==setSteamStat==
<b>Command History</b>
 
<div class="mw-collapsible-content">
 
Available since <span style="color:green">v3.7</span>
 
</div></div>
 
  
 +
<div class="command-min-version-info">Available since: <span class="command-min-version">v3.6</span></div>
  
Sets the specified steam stat to the given value!
+
<div class="command-doc">Sets the specified steam stat to the given value.
{| class="mw-collapsible mw-collapsed" style="background: #f0f0f0; border: 1px dashed darkgrey" width="100%"
 
! Additional Info
 
|-
 
|
 
This command will only work if the steam_api library was included (& successfully loaded) & if a steam account for your game exists!
 
|}
 
  
Syntax:
+
Note: this command only works if the steam_api library was loaded and if a steam account for your game exists.</div>
<syntaxhighlight>
 
setSteamStat(apiName, value)
 
</syntaxhighlight>
 
  
Example:
+
Lua Syntax:
<syntaxhighlight>
+
<pre class="command-syntax">setSteamStat(apiName, value)</pre>
n/a
+
===Arguments===
</syntaxhighlight>
+
====apiName====
 
+
:'''"string"''' - The name of the stat to set. This is the API name specified in the steam account.
 
+
====value====
<b><u>Arguments</u></b>
+
:'''int''' - Stat will be set to this value.
 
+
===Flags===
apiName: "string" <br/>
+
===Return Values===
The name of the stat to set (this is the API name specified in the steam account for your game)
+
;success
 
+
:True if the value was set successfully, false if the operation failed.
Flags: none
+
===Examples===
 
+
None.
Return: success <br/>
 
True if the value was set successfully, false if the operation failed!
 
{{i18n|SetSteamStat}}
 

Latest revision as of 22:28, 30 September 2014

setSteamStat

Available since: v3.6
Sets the specified steam stat to the given value. Note: this command only works if the steam_api library was loaded and if a steam account for your game exists.

Lua Syntax:

setSteamStat(apiName, value)

Arguments

apiName

"string" - The name of the stat to set. This is the API name specified in the steam account.

value

int - Stat will be set to this value.

Flags

Return Values

success
True if the value was set successfully, false if the operation failed.

Examples

None.