PluginsOfficial
Somon Balığı Selam Vermeye Geldi
Merhaba Arkadaşlar Bugün Sizlere Online Yetkili Skriptini Paylaşıcağım Iyı Forumlar Dilerim.
Kod:
#
# Staff displaying Skript by crazicrafter1, credit goes to the Desteria Server for giving me the idea. Thx!
# Please, you may edit this to your advantage, but just give me credit for creating this.
# Give players the permission skript.staff.is for them to be added to the staff list. Player will have permission if their op.
# Give player sthe permission skript.staff.clear to clear the staff list on command (/staff clear)
command /yetkililer:
description: Shows staff that are currently online.
trigger:
loop all players:
loop-player has permission "skript.staff.is"
add loop-player to {onlinestaff::*}
size of {onlinestaff::*} is 0:
message "&e&lONLINE YETKILI YOK"
else:
message "&9&m<-------------------------->&f"
message "&a&lONLINE YETKILILER!"
message "&4%{onlinestaff::*}%"
message "&9&m<-------------------------->&f"
command /staff clear:
description: Clears all players in the staff list.
permission: skript.staff.clear
trigger:
clear {onlinestaff::*}
stop