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 community!

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

  1. The0Felon

    how do I prevent a specific block being placed,like a player head?

    on place: if event-item is a player head: cancel event
  2. The0Felon

    How to completely remove an item?

    on drink: stop if gamemode of player is creative wait a tick remove glass bottle from player's inventory "wait a tick" should work.
  3. The0Felon

    Pls help

    give {_item} with nbt from "{Unbreakable:1,HideFlags:63}" to player added "from"
  4. The0Felon

    Unbreakable blocks

    when a tnt explodes, cancel it and loop all blocks in radius what ever you want. But it would look too symethric so you need to find a solution about it.
  5. The0Felon

    Unbreakable blocks

    I don't know but if i would have a problem like that i would create a new tnt explosion system.
  6. The0Felon

    Unbreakable blocks

    on break: cancel event if boolean tag "isUnbreakable" of nbt of event-block is true on place: set boolean tag "isUnbreakable" of nbt of event-block to true if boolean tag "isUnbreakable" of custom nbt of event-item is true It should be able to exploded by tnt. You can get an...
  7. The0Felon

    API Skript DecenthologramsAPI

    Discord: 0mustafa
  8. The0Felon

    Event checking if player has potion effect

    this is better
  9. The0Felon

    Event checking if player has potion effect

    on join: if player has permission "member.wizard": async run 0 ticks later: while player is online: remove slowness from player if potion effects of player contains slowness wait a tick SKBee required. Will do an async loop so...
  10. The0Felon

    API Skript DecenthologramsAPI - Version 1.1

    Added hide/show holograms for players. Fixed some bugs. Warning holo[gram] with id %string% is now deleted. You should use get holo[gram] with id %string% instead. There was a bug about it so it's changed to fix it.
  11. The0Felon

    API Skript DecenthologramsAPI

    The0Felon updated Skript DecenthologramsAPI with a new update entry: Version 1.1 Read the rest of this update entry...
  12. The0Felon

    Autocompressor skript for a box server

    Discord: 0mustafa
  13. The0Felon

    Parse PlaceholderAPI into skript

    You can use skript-placeholders for PlaceholderAPI support. After installing the plugin and running the server, try using a Placeholder value in Skript as a test. You can do it like this: (Example from the DOCS) command /ping <player>: trigger: set {_ping} to the placeholder...
  14. The0Felon

    How to work with NBT tags of mods?

    https://github.com/ShaneBeee/SkBee/wiki/NBT-Compound-Tags
  15. The0Felon

    Solved How to check the player's name in player head?

    set {_owner} to the skull owner of event-block https://skripthub.net/docs/?id=11796
  16. The0Felon

    How to manage WorldBorder in Skript?

    SkBee allows you to do this. Example code: set size of world border of world "world" to arg 1
  17. The0Felon

    Solved How to set nbt to the player head?

    %player% means a variable which is an instance of player class. That means you need to pick an online player and replace %player% with that online player. You can get a player depending on your event. Can you send me your full code?