[İstek] Server Motd Skript

EwouLee

Kömür Madencisi
En iyi cevaplar
0
Beyler bunu yapabilicek varmı?
Sunucum motd pluginlerini okumuyor​
 

AdexTR

Muvaffakiyetsizleştiriveremeyebileceklerimizdenmiş
Emekli
En iyi cevaplar
112
Motd yapma skriptinden mi bahsediyorsun? Öyleyse skript pluginin içinde hazır olarak bu mevcut.
Kod:
#
# A simple message of the day script.
# The MOTD can be set with the /setmotd command,
# and it will be sent to each player when they log in
# and when they use the /motd command.
#

command /setmotd <text>:
    permission: skript.setmotd
    description: Sets message of the day
    trigger:
        message "Set the MOTD to '%argument%<reset>'"
        set {motd} to argument

command /showmotd:
    description: Displays the message of the day
    trigger:
        message {motd}

on join:
    # uncomment the following line to make the MOTD appear after other messages
    # wait a tick
    message {motd}
 
Üst