Difference between revisions of "FBInstant.context.isSizeBetween"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 7: Line 7:
 
This function determines whether the number of participants in the current game context is between a given minimum and maximum, inclusive. If one of the bounds is null only the other bound will be checked against. It will always return the original result for the first call made in a context in a given game play session. Subsequent calls, regardless of arguments, will return the answer to the original query until a context change occurs and the query result is reset.<br />
 
This function determines whether the number of participants in the current game context is between a given minimum and maximum, inclusive. If one of the bounds is null only the other bound will be checked against. It will always return the original result for the first call made in a context in a given game play session. Subsequent calls, regardless of arguments, will return the answer to the original query until a context change occurs and the query result is reset.<br />
 
<br /></translate>
 
<br /></translate>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(table) = FBInstant.context.isSizeBetween(minSize,maxSize)
 
(table) = FBInstant.context.isSizeBetween(minSize,maxSize)
 
</source>
 
</source>
Line 17: Line 17:
 
=== <translate>Examples</translate> ===
 
=== <translate>Examples</translate> ===
 
'''Example'''<br/>
 
'''Example'''<br/>
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
result=FBInstant.context.isSizeBetween(3,5)
 
result=FBInstant.context.isSizeBetween(3,5)
 
if result then
 
if result then

Revision as of 15:26, 13 July 2023


Available since: Gideros 2018.3
Class: Context

Description


This function determines whether the number of participants in the current game context is between a given minimum and maximum, inclusive. If one of the bounds is null only the other bound will be checked against. It will always return the original result for the first call made in a context in a given game play session. Subsequent calls, regardless of arguments, will return the answer to the original query until a context change occurs and the query result is reset.

<syntaxhighlight lang="lua"> (table) = FBInstant.context.isSizeBetween(minSize,maxSize) </source>

Parameters

minSize: (number) The minimum bound of the context size query.
maxSize: (number) The maximum bound of the context size query.

Return values

Returns (table) Table containing answers to the query.

Examples

Example
<syntaxhighlight lang="lua"> result=FBInstant.context.isSizeBetween(3,5) if result then print("Answer",result.answer) print("MinSize",result.minSize) print("MaxSize",result.maxSize)
</source>