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

    Multipling in skript not working...

    Nevermind. Just send the whole code
  2. TPGamesNL

    Multipling in skript not working...

    How about the other variable (shop item price)
  3. TPGamesNL

    Multipling in skript not working...

    Well I actually meant the part where the variables you're multiplying are set
  4. TPGamesNL

    Multipling in skript not working...

    Can you show the part of the code where the variables are set?
  5. TPGamesNL

    Making a Magic Feather

    The first problem can be solved by the hotbar slot expression, along with slot X of player. Before any delays, set a variable to the hotbar slot. Then use the slot X expression after delays. For the second issue, you could use packets if the addons aren't working.
  6. TPGamesNL

    Solved Anvil Problem

    Well, it is probably possible to use packets to set the anvil slot, or you can just ask the player to type a message in chat.
  7. TPGamesNL

    Solved Anvil Problem

    Take a look at this: https://github.com/SkriptLang/Skript/issues/2493
  8. TPGamesNL

    On break

    Try dropping before setting the block to air
  9. TPGamesNL

    On break

    Try `{number} of event-block`
  10. TPGamesNL

    Items do not have numeric ids on Minecraft 1.13 Error

    There is no actual substitute for it because IDs don't exist in your version, so you cannot use them. The most fitting substitute would be `raw name of %item type%`, which returns a string with vanilla names of items (minecraft:stone for example, but without the minecraft: part)
  11. TPGamesNL

    Items do not have numeric ids on Minecraft 1.13 Error

    You're trying to get an ID from an item in your code (set {_tag} to "%id of slot {_cnt}-1 of player's current inventory%$%lore of slot {_cnt}-1 of player's current inventory%$%display name of slot {_cnt}-1 of player's current inventory%"). So don't use IDs, and the error will be gone.
  12. TPGamesNL

    Items do not have numeric ids on Minecraft 1.13 Error

    The error says what you need to know: items don't have IDs on mc 1.13+
  13. TPGamesNL

    Solved Display skellett's or SkRayFalls sidebar,and hiding nametag

    Oh you shouldn't use CraftBukkit, I would use Spigot / PaperSpigot if I were you.
  14. TPGamesNL

    Solved FAWE Block Distribution (Types)

    You need to use `loop-value.getID()`, which should return BlockState (com.sk89q.worldedit.world.block.BlockState). Then you can use `BlockState#getBlockType()` to get the the block type
  15. TPGamesNL

    replace all ... is not working

    Try the latest from https://www.spigotmc.org/resources/skquery-1-9-1-14.36631/
  16. TPGamesNL

    replace all ... is not working

    1) You need SkQuery for the newline expression 2) Remove the quotes and percentage signs from the last variable.
  17. TPGamesNL

    replace all ... is not working

    Replace is an effect, so you need to remove the `set {banreason.%arg-1%} to` part, and the variable `{_reason}` will have the text with the replaced stuff
  18. TPGamesNL

    Solved Display skellett's or SkRayFalls sidebar,and hiding nametag

    Skore would probably be your best bet for scoreboards. Also, for a 1.8 server, I recommend the Skript version 2.2-dev36, by Bensku
  19. TPGamesNL

    Solved When to use % signs

    Are you asking why they added the quotes (") and percentage signs (%)?
  20. TPGamesNL

    Skript help

    Try without the 'and' on line 9 (it might give a warning but that's nothing to worry about