Search results

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  1. Natalciuu

    Solved Trying to set blocks in an area between 2 points

    Im trying to build a prison skript from the ground up and ive run into an issue with reseting the mines. I cannot get them to set the blocks in the entire area. It creates a line of blocks inbetween instead of making it fill the entire area. My Code for it: every 10 seconds in world "Prison"...
  2. Natalciuu

    Solved Trying to use a var outside a skript with PAPI

    I have the skript papi expansion but its not working still. The var is called {playerrank.%player%}. Im trying to show the var in a scoreboard buts it not working - '&aPrison Rank: &7%skript_playerrank.{player}%' Thats the placeholder im trying to use. Looking in the console when i try...
  3. Natalciuu

    Solved Issues with adding to a var

    Im trying to make a rankup system for my server, I cant get it to add 1 to the var {playerrank.%player%} Code: command /rankup: trigger: if {playerrank.%player%} is greater than or equal to "1": if balance of player is greater than or equal to {cost.%player%}...
  4. Natalciuu

    I can't figure out how to find if a player's name is in a list var

    I'm trying to make a one player sleep system, but its a little more complex. I could probably just find something to do the job but i'd rather not. Code: on bed enter: if %{sleeping::*}% doesn't contain %player%: add %player% to {sleeping::*} if {playercount} is less than...
  5. Natalciuu

    Solved Skript not working.

    Hello, I can't seem to get skript to run on my server. It has worked before but it won't anymore. Heres the console log: 03.10 13:41:46 [Server] INFO [Skript] Enabling Skript v2.5.3 03.10 13:41:46 [Server] ERROR Error occurred while enabling Skript v2.5.3 (Is it up to date?) 03.10 13:41:46...
  6. Natalciuu

    Solved Getting name of a container

    Hey so im working on making a crate system with skript, but I want to get the name of the container or chest when you click it so it sets that to the name of the crate, I have a bit of code but it doesn't work. set {_crateName} to name of %location% inventory
  7. Natalciuu

    Getting name of chest

    How do I get the name of a chest at a certain location ex the location of a chest when you click
  8. Natalciuu

    Solved Can't get this menu working

    I'm currently making a crate system using skript, I just can't seem to get it working, I need to make it so I loops through the items when you right click a trapped chest, then those items in the trapped chest before you are the crate items, i've done this not using something similar to skript...
  9. Natalciuu

    I can't remove a player from a list

    Hi, Im working on making a warn command for my server, it works great except for being able to clear a specific player's warns. It won't work properly and I'm having trouble figuring it out.
  10. Natalciuu

    for all players

    command /tl reload: permission: sk.tab trigger: set tab header to "--\n---" and footer to "--" for all players how do I set the tab for all players? I get an error when I do this.