[İstek] Server Motd Skript

EwouLee

Kömür Madencisi
Mesajlar
113
En iyi cevaplar
0
Beğeniler
13
Puanları
0
Beyler bunu yapabilicek varmı?
Sunucum motd pluginlerini okumuyor​
 


Nano_Sensei

Kızıltaş Madencisi
Mesajlar
429
En iyi cevaplar
0
Beğeniler
322
Puanları
680
Kod:
on server list ping:
    set motd to "xd"
 

EwouLee

Kömür Madencisi
Mesajlar
113
En iyi cevaplar
0
Beğeniler
13
Puanları
0
Yükledim ve hala olmadı
 

AdexTR

Muvaffakiyetsizleştiriveremeyebileceklerimizdenmiş
Emekli
Mesajlar
3,619
En iyi cevaplar
98
Beğeniler
5,539
Puanları
9,180
Ruh hali
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