Added:
:fire
:unfire
:smoke
:unsmoke
:invisible
:visible
:freeze
:unfreeze
:explode
Changed:
Fixed the command bar not capturing focus when the quote key is pressed
Fixed the command bar not disappearing when focus is lost
Made it so the command bar can now fire client sided commands
Updated command descriptions
Removed:
Nothing
I totally agree, itās unoriginal but we all do it. Just like BaseAdmin.
Hmā¦
I would think about making it more like BaseAdmin, with debugging capabilities, much like the BaseAdmin āerrorsā command, where users can see errors and warnings. Not many admin systems have this and stuff it all in the output, which is a bad practice if some players donāt get admin and donāt think to check the output.
Sorry for the late response. If BetterChat V3 emits a chat event that can be registered by .Chatted, then yes. If not, Iāll look into getting that implemented.
Iād say leave the default as it is, with smoothing on. Iām probably just a small minority on the topic of window smoothing, and most are probably fine with it.
Itās always your call, though, as the developer! Pick whatever you prefer.
Added:
:refresh
An option in the configuration to enable/disable smooth GUI dragging
Changed:
:respawn now resets the player back to spawn, while :refresh resets the player and teleports them back to where they were when they ran that command
Bug fixes
Removed:
Nothing
+ Added support for the new TextChatService on the client
- Temporarily disabled clicking to add commands (broken)
Technical Details
Server
Nothing needed for server
Client
At the end (line 63) it checks the ChatVersion and executes the new āPlayerChattedā function with the raw message.
Code Diff
ADDED
if TextChatService.ChatVersion == Enum.ChatVersion.LegacyChatService then
game.Players.LocalPlayer.Chatted:Connect(PlayerChatted)
else
TextChatService.SendingMessage:Connect(function(message)
PlayerChatted(message.Text)
end)
end
-----------------------------
local function PlayerChatted(msg)
--CODE
end
Notes
No issues found have been found, please report any you find.
Great Admin System, however Iāve noticed a few problems with the UIs.
The command description when hovering over a command in the list seems to be cutting off the text making it hard to read, the welcome text on the rank UI when you first join seems to be a bit small, and the search bar in the command list is to small to read.