Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Qualification getLevelForUsers: Difference between revisions

From Catglobe Wiki
No edit summary
Nguyenduyan (talk | contribs)
No edit summary
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
[[Category:Qualification_Functions]]
{{HelpFiles}}
{{HelpFiles}}


==== Qualification_getLevelForUsers ====
==== Qualification_getLevelForUsers ====


Get information about min level and max level of users
Get information about level of users


'''Syntax'''
'''Syntax'''
Line 11: Line 12:
'''Return type'''
'''Return type'''


An array, it is information about min level and max level of users
An Dictionary, it is information about level of users


=== Examples ===
=== Examples ===

Latest revision as of 02:45, 16 January 2018


Qualification_getLevelForUsers

Get information about level of users

Syntax

Dictionary b = Qualification_getLevelForUsers(array list_rids, number qualification_id, number min_level, number max_level);

Return type

An Dictionary, it is information about level of users

Examples

array a = Qualification_getByName("B2B");
print(a);

Dictionary b = Qualification_getLevelForUsers({12649177},a[1],0,1000);
print(b);

//Result:
{37,4,B2B,1,4,True}
{"12649177": 4}