mirror of
https://github.com/PHIDIAS0303/ExpCluster.git
synced 2025-12-31 04:51:40 +09:00
✨ Command to remove greeting
This commit is contained in:
@@ -154,7 +154,8 @@ Roles.new_role('Supporter','Sup')
|
|||||||
'command/tag-color',
|
'command/tag-color',
|
||||||
'command/jail',
|
'command/jail',
|
||||||
'command/unjail',
|
'command/unjail',
|
||||||
'command/join-message'
|
'command/join-message',
|
||||||
|
'command/join-message-clear'
|
||||||
}
|
}
|
||||||
|
|
||||||
Roles.new_role('Partner','Part')
|
Roles.new_role('Partner','Part')
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
[join-message]
|
[join-message]
|
||||||
greet=[color=0,1,0] Welcome to explosive gaming community server! If you like the server join our discord: __1__ [/color]
|
greet=[color=0,1,0] Welcome to explosive gaming community server! If you like the server join our discord: __1__ [/color]
|
||||||
message-set=Your join message has been updated.
|
message-set=Your join message has been updated.
|
||||||
|
message-cleared=Your join message has been cleared.
|
||||||
|
|
||||||
[quickbar]
|
[quickbar]
|
||||||
saved=Your quickbar filters have been saved.
|
saved=Your quickbar filters have been saved.
|
||||||
|
|||||||
@@ -34,3 +34,10 @@ Commands.new_command('join-message', 'Sets your custom join message')
|
|||||||
CustomMessages:set(player, message)
|
CustomMessages:set(player, message)
|
||||||
return {'join-message.message-set'}
|
return {'join-message.message-set'}
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
Commands.new_command('join-message-clear', 'Clear your join message')
|
||||||
|
:register(function(player, message)
|
||||||
|
if not player then return end
|
||||||
|
CustomMessages:remove(player)
|
||||||
|
return {'join-message.message-cleared'}
|
||||||
|
end)
|
||||||
Reference in New Issue
Block a user