Extras: Difference between revisions
Created page with "'''Extras''' is the plugin responsible for granting players OP when they join, and provides miscellaneous "extra" functionality to the server via commands. == Messaging == As of the merging of [https://github.com/kaboomserver/extras/pull/373 PR #373], clients connected to the server are able to broadcast plugin messages to all other connected clients. This allows for much more efficient data transfers between clients, as it is not restricted by how efficiently you can..." |
m Fix headings |
||
| Line 7: | Line 7: | ||
=== Uses === | === Uses === | ||
=== chat-attestation === | ==== chat-attestation ==== | ||
A protocol implemented on top of Extras messaging that broadcasts & verifies signature information for player chat messages, to combat sudo abuse & impersonation attempts and may also be used to verify a user. | A protocol implemented on top of Extras messaging that broadcasts & verifies signature information for player chat messages, to combat sudo abuse & impersonation attempts and may also be used to verify a user. | ||
=== Bot authentication === | ==== Bot authentication ==== | ||
Messaging can be used to implement multi-step bot authentication without OP, clogging chat or binary-to-string encoding. | Messaging can be used to implement multi-step bot authentication without OP, clogging chat or binary-to-string encoding. | ||
[[Category:Plugins]] | [[Category:Plugins]] | ||
Revision as of 05:00, 2 August 2026
Extras is the plugin responsible for granting players OP when they join, and provides miscellaneous "extra" functionality to the server via commands.
Messaging
As of the merging of PR #373, clients connected to the server are able to broadcast plugin messages to all other connected clients. This allows for much more efficient data transfers between clients, as it is not restricted by how efficiently you can encode data into a string, is not ratelimited, cannot be impeded by commands and has no ratelimit.
Uses
chat-attestation
A protocol implemented on top of Extras messaging that broadcasts & verifies signature information for player chat messages, to combat sudo abuse & impersonation attempts and may also be used to verify a user.
Bot authentication
Messaging can be used to implement multi-step bot authentication without OP, clogging chat or binary-to-string encoding.