Jump to content

Dextur

Member
  • Posts

    9
  • Joined

  • Last visited

Everything posted by Dextur

  1. I don't think that will be a possibility. I guess you're going to have to drop a plugin.. or I think upgrade your server
  2. I don't have access to the restart button in panel
  3. Simon is a classic memory skill game. Your main objective is to replicate every displayed color in order by remembering the colors and sounds. It's quite simple to play. All you do is upload the script to your server and type /simon and you'll be set! Script: - Customizing Speed is possible (Allows one player to customize their own speed for the game) - Setting the speed for everyone (Customizing Speed must be disabled) - You can change the "game over" message Skript (REQUIRES SK-NBEET): https://pastebin.com/raw/PnBgaiye If you have any problems with the script, please contact me as soon as possible.
  4. Pretty cool skript. Some stuff like stop isn't needed, and criticyl gave you some advice on some things you can improve. Great job
  5. You don't need credits to run a server. Credits just help you increase the slot/ram capacity.
  6. Things I would like to point out. You shouldn't use local variables to save a player's score because it will delete itself after you use some sort of event. Try to use {var::%arg%}. You should also use %arg's uuid% instead of %arg% if the player change their name. every 1 tick: if {_warning.%arg-1%} is 5: execute command "tempban %player% 1hour &bYou have had too many warnings! (5)" set {_warning.%arg-1%} to 0 This won't work because every 1 tick doesn't have no Idea what's it's executing (Like %arg-1% or %player%). I think you suppose to add (add 1 warn to player) before the broadcast. [&b{_warning.%arg-1%}&7] You forgot to add % before and after {_warning.%arg-1%} I changed a few things in the warn skript. You can take a look for yourself! command /warn [<player>] [<text>]: permission: warn.use permission message: &cYou do not have the correct permission to execute this command! trigger: if arg-1 is set: add 1 to {warning::%arg-1's uuid%} broadcast "" broadcast "&b&lWarning" if arg-2 is set: broadcast "&b%arg-1% &7has been warned by &b%player% &7for &b%arg-2% &7[&b%{warning::%arg-1's uuid%}%&7]" else: broadcast "&b%arg-1% &7has been warned by &b%player% &7[&b%{warning::%arg-1's uuid%}%&7]" broadcast "" if {warning::%arg-1's uuid%} is 5: set {warning::%arg-1's uuid%} to 0 execute command "tempban %arg-1% 1hour &bYou have had too many warnings! (5)" else: send "&cUsage: /warn <player> <reason>" command /unwarn [<player>]: permission: warn.use permission message: &cYou do not have the correct permission to execute this command! trigger: if arg isn't set: send "&cUsage: /unwarn <player>" else: if {warning::%arg's uuid%} > 0: remove 1 from {warning::%arg's uuid%} broadcast "" broadcast "&b&lWarning" broadcast "&b%arg% &7has been un-warned by &b%player%&7!" broadcast ""
×
×
  • Create New...