Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Admin/Flags: Difference between revisions

From starcup wiki
partial update to 1837c36f
 
fix query description
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Admin permissions as defined in Content.Shared/Administration/AdminFlags.cs
Admin permissions as defined in [https://github.com/teamstarcup/starcup/blob/master/Content.Shared/Administration/AdminFlags.cs Content.Shared/Administration/AdminFlags.cs]


{| class="wikitable"
{| class="wikitable"
Line 24: Line 24:
| Mapping || Large mapping operations. || 1 << 8
| Mapping || Large mapping operations. || 1 << 8
|-
|-
| Example || Example
| Logs || Lets you view admin logs.
|1 << 9
|-
|-
| Example || Example
| Round || Lets you modify the round (forcemap, loadgamemap, etc).
|1 << 10
|-
|-
| Example || Example
| Query || Lets you use BQL queries.
|1 << 11
|-
|-
| Example || Example
| Adminhelp || Lets you use the admin help system.
|1 << 12
|-
|-
| Example || Example
| ViewNotes || Lets you view admin notes.
|1 << 13
|-
|-
| Example || Example
| EditNotes || Lets you create, edit and delete admin notes.
|1 << 14
|-
|-
| Example || Example
| MassBan || Lets you Massban, on SS14.Admin.
|1 << 15
|-
|-
| Example || Example
| Stealth || Allows you to remain hidden from adminwho except to other admins with this flag.
|1 << 16
|-
|-
| Example || Example
| Adminchat || Allows you to use Admin chat.
|1 << 17
|-
|-
| Example || Example
| Pii || Permits the visibility of Pii in game and on SS14 Admin.
|1 << 18
|-
|-
| Example || Example
| Moderator || Lets you take moderator actions on the game server.
|1 << 19
|-
|-
| Example || Example
| AdminWho || Lets you check currently online admins.
|1 << 20
|-
|-
| Example || Example
| NameColor || Lets you set the color of your OOC name.
|1 << 21
|-
|-
| Example || Example
| Whitelist || DeltaV - The ability to whitelist people. Either this permission or +BAN is required for remove.
|1 << 25
|-
|-
| Example || Example
| Host || Dangerous host permissions like scsi.
|1u << 31
|}
|}

Latest revision as of 00:02, 6 August 2025

Admin permissions as defined in Content.Shared/Administration/AdminFlags.cs

AdminFlags.cs
Name Description Value
Admin Basic admin verbs. 1 << 0
Ban Ability to ban people. 1 << 1
Debug Debug commands for coders. 1 << 2
Fun This is stuff that trial administrators shouldn't quite have access to yet, e.g. for running events. 1 << 3
Permissions Ability to edit permissions for other administrators. 1 << 4
Server Ability to control the server like restart it or change the round type. 1 << 5
Spawn Ability to spawn stuff in. 1 << 6
VarEdit Ability to use VV. 1 << 7
Mapping Large mapping operations. 1 << 8
Logs Lets you view admin logs. 1 << 9
Round Lets you modify the round (forcemap, loadgamemap, etc). 1 << 10
Query Lets you use BQL queries. 1 << 11
Adminhelp Lets you use the admin help system. 1 << 12
ViewNotes Lets you view admin notes. 1 << 13
EditNotes Lets you create, edit and delete admin notes. 1 << 14
MassBan Lets you Massban, on SS14.Admin. 1 << 15
Stealth Allows you to remain hidden from adminwho except to other admins with this flag. 1 << 16
Adminchat Allows you to use Admin chat. 1 << 17
Pii Permits the visibility of Pii in game and on SS14 Admin. 1 << 18
Moderator Lets you take moderator actions on the game server. 1 << 19
AdminWho Lets you check currently online admins. 1 << 20
NameColor Lets you set the color of your OOC name. 1 << 21
Whitelist DeltaV - The ability to whitelist people. Either this permission or +BAN is required for remove. 1 << 25
Host Dangerous host permissions like scsi. 1u << 31