Ped::getGroupSize: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
(yay)
 
Line 1: Line 1:
p1 may be a BOOL representing whether or not the group even exists
p1 may be a BOOL representing whether or not the group even exists
==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">ped.getGroupSize(groupID, unknown, sizeInMembers);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.ped.getGroupSize(groupID, unknown, sizeInMembers);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''groupID:''' int
*'''groupID:''' int
Line 10: Line 10:
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
todo
// todo
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Ped_function_c}}
{{Ped_s_function_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Latest revision as of 21:29, 6 May 2017

p1 may be a BOOL representing whether or not the group even exists

Syntax

mp.game.ped.getGroupSize(groupID, unknown, sizeInMembers);

Required Arguments

  • groupID: int
  • unknown: unknown (to be checked)
  • sizeInMembers: int

Return value

  • unknown (to be checked)*int

Example

// todo

See also