Recent content by Computerize

  • 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. C

    Check GUI name

    For the 'name of inventory' how do I check if the name of inventory of loop-player is "test"
  2. C

    Check GUI name

    Is there a condition to check the name of the GUI a player has open or which item is in a certain slot of the GUI a player has open.
  3. C

    Weird issue with list variables

    I made the following skript: command /whitelistblock [<text>]: aliases: wlb permission: blockedup.whitelistblock permission message: &cInsufficient permissions. trigger: if arg-1 isn't set: send "&f/wlb add" send "&f/wlb remove" send "&f/wlb list" else if arg-1...
  4. C

    Drop items from a chest or furnace

    So I want a Skript where if the event block is a furnace, chest, trapped chest, hopper, barrel, dispenser or dropper it will be set to air and all the items in the storage block will drop at the location of the block excluding the broken block itself. Thanks
  5. C

    Solved If block at {_x} {_y} {_z} is {_block}

    loop all players: set {_x} to x-coord of loop-player set {_y} to y-coord of loop-player set {_z} to z-coord of loop-player set {_totalUp} to 0 if block at {_x} {_y} {_z} is "jungle wood bark block": loop 25 times: if block at {_x} {_y} {_z} is jungle wood bark...
  6. C

    Making a cuboid with 2 variables.

    Do you know if there's anyway to check if a player is in the world "example" and sudo them as if they were OP (all permissions) to do /example
  7. C

    Making a cuboid with 2 variables.

    This is the code I am using: every second: loop blocks between block at {Wood.1} and block at {Wood.2}: set loop-block to jungle wood bark block Here is what happens: https://gyazo.com/4ad849d30acae72353079b6ff8ab61c8 Here is what I want to happen...
  8. C

    Looping all blocks between 2 locations

    Well, now when defining {_loc1} and {_loc2} it says "variables cannot be used here".
  9. C

    Looping all blocks between 2 locations

    Using "loop all blocks between {_x1} {_y1} {_z1} and {_x2} {_y2} {_z2}" I cant use variables within this loop so is there any alternative?
  10. C

    Help with claiming Skript.

    I've made nearly all of my script for claiming in factions, but I've run into a problem which I don't know how to solve. So I each faction has 4 variables for claims: {factionClaim1x.%{faction}%} {factionClaim2x.%{faction}%} {factionClaim1z.%{faction}%} {factionClaim2z.%{faction}%} And when...
  11. C

    Check if a coordinate is between 2 other coordinates

    That'd be great, my discord is Computerize#5460
  12. C

    Check if a coordinate is between 2 other coordinates

    How do I check if {_x} {_y} {_z} is between {_x1} {_y1} {_z1} and {_x2} {_y2} {_z2}? I don't need to worry about the y coordinate but each of the x and z cords need to be as a different variables.
  13. C

    Solved Opposite of function abs()

    oh wow I really over complicated things thanks a lot