Difference between revisions of "FBInstant.player.incrementStatsAsync"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 7: Line 7:
 
Increment stats saved in the designated cloud storage of the current player.<br />
 
Increment stats saved in the designated cloud storage of the current player.<br />
 
<br /></translate>
 
<br /></translate>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
  FBInstant.player.incrementStatsAsync(keyValuePairs,callback)
 
  FBInstant.player.incrementStatsAsync(keyValuePairs,callback)
 
</source>
 
</source>
Line 16: Line 16:
 
=== <translate>Examples</translate> ===
 
=== <translate>Examples</translate> ===
 
'''Example'''<br/>
 
'''Example'''<br/>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
FBInstant.player.incrementStatsAsync({level=1,zombiesSlain=17,rank=-1}, function(result,error)
 
FBInstant.player.incrementStatsAsync({level=1,zombiesSlain=17,rank=-1}, function(result,error)
 
     if result then
 
     if result then

Revision as of 15:28, 13 July 2023


Available since: Gideros 2018.3
Class: Player

Description


Increment stats saved in the designated cloud storage of the current player.

<syntaxhighlight lang="lua">

FBInstant.player.incrementStatsAsync(keyValuePairs,callback)

</source>

Parameters

keys-value-pairs: (table) A table containing a set of key-value pairs indicating how much to increment each stat in cloud storage. The object must contain only numerical values - any non-numerical values will cause the entire modification to be rejected.
callback: (function) A function that will be called with two arguments: a table which contains the updated key-value pairs for each key specified in the input dictionary or nil if the operation failed, and an error code if the function failed. NOTE: The table does not necessarily mean that the changes have already been persisted. Rather, it means that the increments were valid and have been scheduled to be performed. It also guarantees that all values that were incremented are now available in player.getStatsAsync.

Examples

Example
<syntaxhighlight lang="lua"> FBInstant.player.incrementStatsAsync({level=1,zombiesSlain=17,rank=-1}, function(result,error)

   if result then

print("increments have been made! New values:") for key,value in pairs(result) do print(key,value) end end end)
</source>