FBInstant.player.incrementStatsAsync

From GiderosMobile
This page contains changes which are not marked for translation.


Available since: Gideros 2018.3
Class: Player

Description


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

 FBInstant.player.incrementStatsAsync(keyValuePairs,callback)

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

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)
<br/>