wiki.sine.space | sinespace

Difference between revisions of "Scripting/SGroupInfo"

From wiki.sine.space
Jump to: navigation, search
(Created page with "=Attributes= {{ScriptFunction|readonly int|ID|;|The id of the group.|5= local info=Space.Groups.GetGroupInfo(555)<br> Space.Log("ID "..info.ID) }} {{ScriptFunction|readonly...")
 
(Replaced content with "This page has moved to: https://docs.sine.space/v/scripting/client-scripting/types/sgroupinfo")
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Attributes=
+
This page has moved to: https://docs.sine.space/v/scripting/client-scripting/types/sgroupinfo
 
+
{{ScriptFunction|readonly int|ID|;|The id of the group.|5=
+
local info=Space.Groups.GetGroupInfo(555)<br>
+
Space.Log("ID "..info.ID)
+
}}
+
 
+
{{ScriptFunction|readonly int|OwnerID|;|The owner id of the group.|5=
+
local info=Space.Groups.GetGroupInfo(555)<br>
+
Space.Log("OwnerID "..info.OwnerID)
+
}}
+
 
+
{{ScriptFunction|readonly string |Name|;|The name of the group.|5=
+
local info=Space.Groups.GetGroupInfo(555)<br>
+
Space.Log("Name "..info.Name)
+
}}
+
 
+
{{ScriptFunction|readonly string |Description|;|The description of the group.|5=
+
local info=Space.Groups.GetGroupInfo(555)<br>
+
Space.Log("Description "..info.Description)
+
}}
+
 
+
{{ScriptFunction|readonly string |Access|;|The access of the group.|5=
+
local info=Space.Groups.GetGroupInfo(555)<br>
+
Space.Log("Access "..info.Access)
+
}}
+
 
+
{{ScriptFunction|readonly string |ImageUrl|;|image url of the group.|5=
+
local info=Space.Groups.GetGroupInfo(555)<br>
+
Space.Log("ImageUrl "..info.ImageUrl)
+
}}
+
 
+
{{ScriptFunction|readonly int |MaxAvatars|;|The maxAvatars of the group.|5=
+
local info=Space.Groups.GetGroupInfo(555)<br>
+
Space.Log("MaxAvatars "..info.MaxAvatars)
+
}}
+
 
+
{{ScriptFunction|readonly string |Role|;|The role of the group.|5=
+
local info=Space.Groups.GetGroupInfo(555)<br>
+
Space.Log("Role "..info.Role)
+
}}
+
 
+
{{Scripting Navbox}}
+

Latest revision as of 07:58, 19 September 2022

This page has moved to: https://docs.sine.space/v/scripting/client-scripting/types/sgroupinfo