wiki.sine.space | sinespace

Scripting/SGroupInfo

From wiki.sine.space
Revision as of 15:32, 6 January 2022 by Voidtech (Talk | contribs)

Jump to: navigation, search

Attributes

ID

int ID { get; }

The ID of the group.

ID = Space.Groups.GetGroupInfo(350).ID


OwnerID

int OwnerID { get; }

The ID of the group's owner.

OwnerID = Space.Groups.GetGroupInfo(350).OwnerID


Name

string Name { get; }

The name of the group.

Name = Space.Groups.GetGroupInfo(350).Name


Description

string Description { get; }

The description of the group.

Description =Space.Groups.GetGroupInfo(350).Description


Access

string Access { get; }

The level of access the group has, e.g. public or private.

Access = Space.Groups.GetGroupInfo(350).Access


ImageUrl

string ImageUrl { get; }

The URL of the group's image.

ImageUrl = Space.Groups.GetGroupInfo(350).ImageUrl


MaxAvatars

int MaxAvatars { get; }

The max number of members the group can have.

MaxAvatars = Space.Groups.GetGroupInfo(350).MaxAvatars


Role

string Role { get; }

Player's role in this group.

Role = Space.Groups.GetGroupInfo(350).Role


CreateDate

string CreateDate { get; }

Creation date of the group.

CreateDate = Space.Groups.GetGroupInfo(350).CreateDate