wiki.sine.space | sinespace

Scripting/SGroupInfo

From wiki.sine.space
Revision as of 06:28, 14 January 2021 by Edisonwu (Talk | contribs) (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...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Attributes

ID

The id of the group.

local info=Space.Groups.GetGroupInfo(555)
Space.Log("ID "..info.ID)


OwnerID

readonly int OwnerID ;

The owner id of the group.

local info=Space.Groups.GetGroupInfo(555)
Space.Log("OwnerID "..info.OwnerID)


Name

The name of the group.

local info=Space.Groups.GetGroupInfo(555)
Space.Log("Name "..info.Name)


Description

readonly string Description ;

The description of the group.

local info=Space.Groups.GetGroupInfo(555)
Space.Log("Description "..info.Description)


Access

The access of the group.

local info=Space.Groups.GetGroupInfo(555)
Space.Log("Access "..info.Access)


ImageUrl

image url of the group.

local info=Space.Groups.GetGroupInfo(555)
Space.Log("ImageUrl "..info.ImageUrl)


MaxAvatars

readonly int MaxAvatars ;

The maxAvatars of the group.

local info=Space.Groups.GetGroupInfo(555)
Space.Log("MaxAvatars "..info.MaxAvatars)


Role

The role of the group.

local info=Space.Groups.GetGroupInfo(555)
Space.Log("Role "..info.Role)