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

    Number in name

    1.Try: set {_name} to {_name} parsed as number-10 or set {_name} to {_name}-10 or set {_name} to {_namenumber} parsed as number set {_name} to {_namenumber}-10 or subtract 10 from {_name} parsed as number 2.Try: on rightclick: if name of player's tool is "&aGiftcard": open chest...
  2. HackerOTVW

    Custom ids

    Yup, if that code works :)
  3. HackerOTVW

    Custom ids

    Code may by is: options: timedrop: 5 on place of a stone: if name of player's tool is "&6Stone Spawner": set {StoneSpawner.%location of event-block%} to location of event-block add {StoneSpawner.%location of event-block%} to {Store.StoneSpawner::*} on break a stone...
  4. HackerOTVW

    Need help looping items in a chest and removing them

    Does it have any errors? Or try replacing "wall sign" to "sign"
  5. HackerOTVW

    Solved How not to ban players who never entered my server.

    If your meaning is: You want to ban players who have never joined your server, you can try this: if arg-1 has played before: #some code else: # It means arg-1 never joined your server before #some code There are still other problem?
  6. HackerOTVW

    nbt vanilla access value

    You are welcome :)
  7. HackerOTVW

    Custom ids

    I really don't understand your mean :/
  8. HackerOTVW

    Need help looping items in a chest and removing them

    If your mean is The player places item in the chest and clicks on the sign on the chest to sell all items in it, you can try this: on rightclick on wall sign: if block at block under event-block is a chest or trapped chest: if line 1 of event-block is "&7[&6&lChestSell&7]"...
  9. HackerOTVW

    nbt vanilla access value

    As far as I know, the effect.digSpeed property has a fixed value of 0.1 Can this help you? replace every "Name:""generic.attackSpeed""" with "Modifiers:[0:{UUIDMost:-5797418877589107702L,UUIDLeast:-6181652684028920077L,Amount:0.01d,Operation:2,Name:""effect.digSpeed...
  10. HackerOTVW

    Number in name

    U can try: command /giftcard: trigger: give 1 paper named "&7100$ &aGiftcard" to player on right click: if player's held item is a paper named "&7100$ &aGiftcard": open chest with 1 rows named "Test" to player format slot 4 of player with dirt named "10$" to...
  11. HackerOTVW

    Mining - Fortune + exploding

    U can try: On Break: if player can build at targeted block: if lore of player's tool is "&8[&6&lSprægning Lvl 1&8]": create a fake explosion at targeted block loop blocks in radius 1.8 around the targeted block: if loop-block is stone...
  12. HackerOTVW

    Anyone who has time and can could help me?

    You can use Skellett's CustomEvents: ==================================== Event: "org.bukkit.event.block.BlockFormEvent" Syntax: "%You need to ask LimeGlass%" ==================================== Once you have the syntax, you can "set event-block to air" :emoji_slight_smile:
  13. HackerOTVW

    Ey i need help on skript with heads

    Post those errors
  14. HackerOTVW

    How to make like to see a bedrock block braking

    Here is RamdomSk
  15. HackerOTVW

    Ey i need help on skript with heads

    I do not know if this is what you are looking for: command /givehead: trigger: give player a skull of ("Notch" parsed as an offline player) named "&c&lStrength" with lore "Test Lore" give player a skull with nbt "{display:{Name:""&c&lStrength""},SkullOwner:Notch}" #If you use...
  16. HackerOTVW

    Error updating Skript

    Im using Skript dev31c and when i update to Skript dev32b, there is a problem with TuSke, how to fix it? Error: [09:07:50 INFO]: [ViaVersion] ViaVersion detected server version: 1.11.1(316) [09:07:50 INFO]: [Skript] Loading variables... [09:07:50 INFO]: [Skript] Loaded 9 variables in 0.0 seconds...
  17. HackerOTVW

    Iron Trapdoor open/close skript

    Just "167", but it depends on your server version. When using the id in sk you will get a warning in the console like "The new version will not use id anymore, you can replace the <id you wrote in sk> to <its name>".
  18. HackerOTVW

    Solved Place block skript

    I think this might help you: set block at [block [number] [above|under|north|south|east|west]] %location% to %block% Eg: on rightclick with stick: set block at block 1 north event-location to oak wood plank set block at block 1 south event-location to oak wood plank set block at...