adding colorate message

This commit is contained in:
Mylloon 2021-06-27 18:32:53 +02:00
parent 07b4f6fe95
commit 9948f56bef

14
main.sk
View file

@ -16,8 +16,8 @@ command broadcast [<text>]: # annonce
trigger: trigger:
if player is op: if player is op:
if arg-1 is set: if arg-1 is set:
broadcast "&a&lBREAKING NEWS &7» &6%arg-1%" broadcast "&a&lBREAKING NEWS &7» &6%colored text-arg%"
send all players title "&a&lBREAKING NEWS" with subtitle "&6%arg-1%" for 5 seconds send all players title "&a&lBREAKING NEWS" with subtitle "&6%colored text-arg%" for 5 seconds
else: else:
send "&4Vous n'avez pas spécifier de texte." send "&4Vous n'avez pas spécifier de texte."
else: else:
@ -133,7 +133,7 @@ command listhome: # liste tes homes
replace all "and" with "et" in {_maisons} replace all "and" with "et" in {_maisons}
send "&aListe des tes maisons : %{_maisons}%" send "&aListe des tes maisons : %{_maisons}%"
command rename <string>: # renomme un item command rename <text>: # renomme un item
executable by: players executable by: players
description: Renomme l'item que tu as dans ta main description: Renomme l'item que tu as dans ta main
trigger: trigger:
@ -141,7 +141,7 @@ command rename <string>: # renomme un item
if player's tool is air: if player's tool is air:
send "&4Tu dois avoir un item dans la main pour le renommer." send "&4Tu dois avoir un item dans la main pour le renommer."
else: else:
set {_name} to arg-1 set {_name} to colored text-arg
replace all "&" with "§" in {_name} replace all "&" with "§" in {_name}
send "&eL'item &r%player's tool%&e est renommé en ""&r%{_name}%&e""." send "&eL'item &r%player's tool%&e est renommé en ""&r%{_name}%&e""."
set the name of the player's tool to "§r%{_name}%" set the name of the player's tool to "§r%{_name}%"
@ -267,7 +267,7 @@ on chat: # chat
set {_player} to {nick.%uuid of player%} set {_player} to {nick.%uuid of player%}
else: else:
set {_player} to player's name set {_player} to player's name
broadcast "<%{_player}%&r> %message%" in world of player broadcast "<%{_player}%&r> %colored message%" in world of player
command /nickname [<player>] <text>: # changement de pseudo command /nickname [<player>] <text>: # changement de pseudo
executable by: players executable by: players
@ -300,8 +300,8 @@ command /msg <player> <text>: # DM
aliases: whisper, w, tell, t aliases: whisper, w, tell, t
description: Envoie un message privé à un joueur. description: Envoie un message privé à un joueur.
trigger: trigger:
send "&8[Moi -> %arg 1%&8]&7 %arg 2%" to player send "&8[Moi -> %arg-1%&8]&7 %colored text-arg%" to player
send "&8[%player%&8 -> Moi] &b%arg 2%" to arg-1 send "&8[%player%&8 -> Moi] &b%colored text-arg%" to arg-1
set {dmReply.%uuid of player%} to arg-1 set {dmReply.%uuid of player%} to arg-1
set {dmReply.%uuid of arg-1%} to player set {dmReply.%uuid of arg-1%} to player