You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Broadcasts are only governed by a time interval and cannot be triggered by events, but only by executing commands.
Background:
Broadcasts in TGM allowed server administrator to configure several events that triggered a broadcast.
Such events are no longer available with Mars.
Desired solution:
Server owners should be able to specify some event(s) that will trigger the broadcast(s).
Lack of the events property would mean the broadcast is just periodically sent in accordance with the fixed global interval.
onFirstJoin (when the player first joins the server)
onJoin (when the player joins the server)
onMatchResult (when the match ends)
onTeamJoin (when the player joins a team)
onMatchLoad (when a match is loaded)
Example config:
- name: broadcastOnJoinmessage: This broadcast is sent every time you join the server!events: onJoin # Broadcast is sent to the player every time they join the server
- name: epicBroadcastmessage: This broadcast is sent every minute, but also when you first join the server!# This broadcast is sent when the player first joins the server, # then periodically (every 1 minute according to the global broadcast interval)events: onFirstJoin, interval
Issue:
Broadcasts are only governed by a time interval and cannot be triggered by events, but only by executing commands.
Background:
Broadcasts in TGM allowed server administrator to configure several events that triggered a broadcast.
Such events are no longer available with Mars.
Desired solution:
Server owners should be able to specify some event(s) that will trigger the broadcast(s).
Lack of the events property would mean the broadcast is just periodically sent in accordance with the fixed global interval.
Some events extracted from TGM:
onFirstJoin
(when the player first joins the server)onJoin
(when the player joins the server)onMatchResult
(when the match ends)onTeamJoin
(when the player joins a team)onMatchLoad
(when a match is loaded)Example config:
Affected areas / files:
The text was updated successfully, but these errors were encountered: