Skip to content

Broadcast users connections and disconnections to the global chat

License

Notifications You must be signed in to change notification settings

F-Plugins/JoinLeaveMessages

Repository files navigation

JoinLeaveMessages

Discord Github All Releases GitHub release (latest by date)

Broadcast users connections and disconnections to the global chat

Download Now

RocketMod: ClickMe

OpenMod: openmod install Feli.JoinLeaveMessages

Open Mod

Configuration

joinMessage:
  enabled: true
  showCountry: true
  customIconUrl: "" # Leave empty if you dont want a custom icon url

leaveMessage:
  enabled: false
  customIconUrl: "" # Leave empty if you dont want a custom icon url

Translations

join: "<color=yellow>{User.DisplayName} has connected to the server from {Country}</color>"

leave: "<color=red>{User.DisplayName} disconnected from the server</color>"

Rocket Mod

Configuration

<?xml version="1.0" encoding="utf-8"?>
<Configuration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <JoinMessages>true</JoinMessages>
  <ShowCountry>true</ShowCountry>
  <CustomImageUrl />
  <LeaveMessages>false</LeaveMessages>
</Configuration>

Configuration with a message icon

<?xml version="1.0" encoding="utf-8"?>
<Configuration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <JoinMessages>true</JoinMessages>
  <ShowCountry>true</ShowCountry>
  <CustomImageUrl>https://i.imgur.com/aKaOqIh.gif</CustomImageUrl>
  <LeaveMessages>false</LeaveMessages>
</Configuration>

Translations

<?xml version="1.0" encoding="utf-8"?>
<Translations xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Translation Id="Join" Value="{0} has connected to the server from {1}" />
  <Translation Id="Leave" Value="{0} disconnected from the server" />
</Translations>