wiki.sine.space | sinespace

Difference between revisions of "Scripting/SGroupInfo"

From wiki.sine.space
Jump to: navigation, search
Line 1: Line 1:
 
=Attributes=
 
=Attributes=
  
{{ScriptFunction|int|ID|{ get; }|The id of the group.|5=<pre>
+
{{ScriptFunction|int|ID|{ get; }|The ID of the group.|5=<pre>
 
ID = Space.Groups.GetGroupInfo(350).ID</pre>|6=<pre></pre>
 
ID = Space.Groups.GetGroupInfo(350).ID</pre>|6=<pre></pre>
 
}}
 
}}
  
{{ScriptFunction|int|OwnerID|{ get; }|The owner id of the group.|5=<pre>
+
{{ScriptFunction|int|OwnerID|{ get; }|The ID of the group's owner.|5=<pre>
 
OwnerID = Space.Groups.GetGroupInfo(350).OwnerID</pre>|6=<pre></pre>
 
OwnerID = Space.Groups.GetGroupInfo(350).OwnerID</pre>|6=<pre></pre>
 
}}
 
}}
Line 17: Line 17:
 
}}
 
}}
  
{{ScriptFunction|string|Access|{ get; }|The access of the group.|5=<pre>
+
{{ScriptFunction|string|Access|{ get; }|The level of access the group has, e.g. public or private.|5=<pre>
 
Access = Space.Groups.GetGroupInfo(350).Access</pre>|6=<pre></pre>
 
Access = Space.Groups.GetGroupInfo(350).Access</pre>|6=<pre></pre>
 
}}
 
}}
  
{{ScriptFunction|string|ImageUrl|{ get; }|image url of the group.|5=<pre>
+
{{ScriptFunction|string|ImageUrl|{ get; }|The URL of the group's image.|5=<pre>
 
ImageUrl = Space.Groups.GetGroupInfo(350).ImageUrl</pre>|6=<pre></pre>
 
ImageUrl = Space.Groups.GetGroupInfo(350).ImageUrl</pre>|6=<pre></pre>
 
}}
 
}}
  
{{ScriptFunction|int|MaxAvatars|{ get; }|The maxAvatars of the group.|5=<pre>
+
{{ScriptFunction|int|MaxAvatars|{ get; }|The max number of members the group can have.|5=<pre>
 
MaxAvatars = Space.Groups.GetGroupInfo(350).MaxAvatars</pre>|6=<pre></pre>
 
MaxAvatars = Space.Groups.GetGroupInfo(350).MaxAvatars</pre>|6=<pre></pre>
 
}}
 
}}

Revision as of 15:32, 6 January 2022

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