2023-05-21: Yes, we're back. No, you can't login yet

Admin Chat

Uploaded by Jincux

The add-on board icon. Server Mods
The add-on file name icon. Server_AdminChat.zip
The add-on upload date icon. Apr 7th 2016, 1:25 AM
The add-on download count icon. 3,089

Description

Admin chat allows admins to privately talk to eachother. Use the command /ac!

Comments (4)

Marble
2016-07-07 18:54:13
Cool
Kyrorki
2017-01-06 02:05:19
You arn't admin!
noblecrow
2017-05-03 01:14:58
Good for freebuild servers, but roleplay chat has "@" prefix for admin chat
Trinko
2018-07-28 00:29:25
This addon does not package gameConnection::autoAdminCheck() correctly. function GameConnection::autoAdminCheck(%cl, %a) { %ret = parent::autoAdminCheck(%cl, %a); messageClient(%cl, '', "The admin chat delimiter is " @ $AC::Delimiter); } <color:000000>that is not how you package autoadmincheck here is an example of how I package autoAdminCheck and have it still work: function GameConnection::autoAdminCheck(%this) { // do stuff Parent::autoAdminCheck(%this); } now I understand some things require you to return the value given but this is proven to work most of the time.