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. D

    Solved SkStuff Paste schematic no working?

    Minecraft Version:1.8 Full Code: I'm trying to paste a ship which i have saved as a schematic using worldedit, but it doesn't paste? I'm thinking that it maybe could be an incompatibility between two addons. But i can't seem to find anything online... command /spawnship: permission...
  2. D

    Solved Check what head player is clicking on

    on place of head: if name of player's tool is "&3&lComputer": set {gadget.%event-block%} to "Computer" on right click on head: if {gadget.%event-block%} is set: if {gadget.%event-block%} is "Computer": message "Using Computer" on break of head: if...
  3. D

    Solved Check what head player is clicking on

    Again no erros but doesn't do anything when i click on it
  4. D

    Solved Check what head player is clicking on

    No errors, but nothing happens. Thanks for the effort though =)
  5. D

    Solved Check what head player is clicking on

    ok i think that would work too
  6. D

    Solved Check what head player is clicking on

    It doesn't work.. But thanks for your time anyway =) Error: Wooomfy is not an item stack
  7. D

    Solved Check what head player is clicking on

    Full Code: on right click on head: if clicked block is head of Wooomfy: message "Computer" I just can't seem to find a way to check what head the player is clicking on. if the player clicks on a specific head, then the player would execute a command or receive a message. but I...
  8. D

    Can i make a "on hold left click"?

    Minecraft Version:1.8 --- I'm trying to make a gun for my server, and I'm wondering if there is a way to check if a player is holding down the left mouse button. Have you tried searching the docs? Yes Have you tried searching the forums? Yes
  9. D

    Functions not working

    in the config, it says version 2.1.2 idk if that can help.
  10. D

    Functions not working

    Minecraft Version:1.8 --- Full Code: function myFunction(p: player): set helmet of {_p} to leather helmet Errors on Reload: myFunction(p: player) is not a text So I got another error that I just can't find a solution to. I've tried to make the p in player capitalized but that doesn't...
  11. D

    Solved Add durability to tools in menus

    Minecraft Version:1.8 --- Full Code: command /mmenu: trigger: open chest with 5 rows named "Main menu" to player # Assault class # format slot 0 of player with paper named "Assault" to close if {bc.rifle.%player%} is 0: format slot 9 of...
  12. D

    Solved Hitting my self with the "shoot arrow" skript

    Minecraft Version:1.8 --- Full Code: on join: if {bc.rifle.%player%} is not set: set {bc.rifle.%player%} to 0 if {bc.pistol.%player%} is not set: set {bc.pistol.%player%} to 0 command /getweapons: trigger: if {bc.rifle.%player%} is...
  13. D

    How to make custom tags to projectiles?

    I still get the same error I found another way to do it: on right click: if player is holding a wooden pickaxe named "Rifle %{bc.r0.ammo.%player%}%/%{bc.r0.leftammo.%player%}%": if {no.ammo.r0.%player%} is 0: shoot arrow from player at speed 5 set...
  14. D

    How to make custom tags to projectiles?

    Anyways thanks for your time ^^
  15. D

    How to make custom tags to projectiles?

    Minecraft Version:1.8 --- Full Code: on join: if {bc.rifle.%player%} is not set: set {bc.rifle.%player%} to 0 command /getweapons: trigger: if {bc.rifle.%player%} is 0: set {bc.r0.ammo.%player%} to 16 set {bc.r0.leftammo.%player%} to 64...