Recent content by Natalciuu

  • 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

    How to do worldedit command through skript

    Worldedit generally uses 2 slashes from what I recall. Or just copy this. make console execute command "//replace #region 50%cobblestone,50%stone"
  2. Natalciuu

    Solved Remove random item from player inventory and add it to your own

    This should work. command /removeitem <player>: trigger: set {_items::*} to all items of argument's inventory set {_item} to random item out of {_items::*} remove {_item} from arg-1's inventory give player 1 of {_item} send "&7Took &c%{_item}% &7from...
  3. Natalciuu

    Solved Trying to set blocks in an area between 2 points

    it just says "Can't understand this loop:", and if i use for example from instead of within is makes this line in between the two points.
  4. Natalciuu

    Solved Trying to set blocks in an area between 2 points

    every 10 seconds in world "Prison": loop {mines.name::*}: loop blocks within {minespos1.%loop-value%} to {minespos2.%loop-value%}: set loop-block to stone #chance of {mines::%loop-value-1%::panel::chance::*}%: #set loop-block to emerald ore...
  5. Natalciuu

    Solved Trying to set blocks in an area between 2 points

    yeah, ill have to look, in a bit, the vars specified are coordinates and work just fine. Its just the line of code in of its self. Just checked, ill send them here. [13:55:10 INFO]: [Skript] Loading variables... [13:55:10 INFO]: [Skript] Loaded 36 variables in 0.0 seconds [13:55:11 ERROR]...
  6. Natalciuu

    Solved Trying to set blocks in an area between 2 points

    my server version is 1.16.5 and i should have the lastest skript version.
  7. Natalciuu

    Solved Trying to set blocks in an area between 2 points

    One of the lines doesnt, work, ive had issues with it before. and if i use from {x} to {x} it makes a line in-between. loop blocks within {_x} to {_x}:
  8. Natalciuu

    Solved Trying to set blocks in an area between 2 points

    This doesn't work for what I need. I need it to set every block in the area randomly, and if possible a way to set the chance of it
  9. 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"...
  10. 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...
  11. 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%}...
  12. 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...
  13. Natalciuu

    Solved Skript not working.

    I got it working, it was something with the files.
  14. 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...
  15. 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