SkriptTools is now part of the skUnity family! skUnity will keep SkriptTools running, updating and adding new features.
- You can now search scripts by author by doing "author:name". For example: "author:nfell2009"
- Login to SkriptTools using your skUnity account to save your favourite scripts and come back to them
View the code of the script directly in your browser without downloading anything.
#---------------------------------------------------------------------------------------------------------#
# #
# #
# ---------------------------- SEKRET PLUGINS // SPIGOT // VERSION 1 -------------------------------------#
# #
# #
#---------------------------------------------------------------------------------------------------------#
# // Version 1.0 - Release.
options:
#------------------------#
# Fake plugins list, it will be automaticly formatted to have the right colors.
sekret-plugins: Custom, Server, Plugins, :)
#------------------------#
# If set to "true", it will display fake plugins message, if set to false it will show custom message that's set below. [Only allowed: true or false]
display-plugins: true
#------------------------#
# Will be shown if display-mode is set to false, see above.
custom-message: &8[&bServer&8] &fYou are not allowed to do this!
#------------------------#
#Show the plugins for player(s) with permission? (Currently doesn't do anything, coming soon in the next update!) [Only allowed: true or false]
showplugins-player: false
#------------------------#
#Permission to show the plugins:
showplugins-perm: "sekretplugins.show"
#------------------------#
on load:
set {display.mode} to {@display-plugins}
set {plugins.list::*} to {sekretplugins} split at ","
set {plugins.amount} to size of {plugins.list::*}
set {sekretplugins} to "{@sekret-plugins}"
replace every "," with "&f,&a" in {sekretplugins}
command /plugins:
aliases: /?, /pl, /ver, /icanhasbukkit, /bukkit:pl, /bukkit:plugins, /bukkit:help
trigger:
if {@showplugins-player} is true:
if player has permission {@showplugins-perm}:
message "&cComing soon in next update on @spigot!"
else:
if {display.mode} is true:
send "&fPlugins&4 &f(%{plugins.amount}%):&a %{sekretplugins}%"
if {display.mode} is false:
message "{@custom-message}"