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

    Solved Damage Entity in a radius of 5

    damage all entities in radius 10 around player where [input is not a player] by 10 This basically translates to: loop all entities in radius 10 around player: if loop-entity isn't a player: damage loop-entity by 10
  2. Goose

    I'm doing great, thanks! How are you doing :)

    I'm doing great, thanks! How are you doing :)
  3. Goose

    Multiple parser marks

    Hey Toast! Thanks for the answer, I saw that the parse mark is XOR'd in skript-reflect but I was unsure if that was the case in Skript too. The syntax in mind was line from [(point|location)] %location% to [(point|location)] %location% [1¦with density %number%] [2¦distanced by %number%...
  4. Goose

    Multiple parser marks

    Hello, I'm working on an addon dedicated to particles, and currently I'm making an expression to draw a line that the player can (optionally) change the density and distance between particles of. This seems to require multiple marks, but obviously the parser.mark can't be both 1 and 2 (if the...
  5. Goose

    Run Linux command with Skript

    What's the absolute path of your file? SkUtilities was unable to locate it
  6. Goose

    Howdy :) Are you able to fix this issue with the parser's syntax highlighting where strings...

    Howdy :) Are you able to fix this issue with the parser's syntax highlighting where strings 'break' when a colon is inserted from time to time? Bit odd that it only happens in the replace syntax (from what I've tested), though likely also happens in other cases as well. I'm sure you'll be able...
  7. Goose

    Hey BaeFell, long time no chat. Are you currently aware of the issues with the Skunity Parser...

    Hey BaeFell, long time no chat. Are you currently aware of the issues with the Skunity Parser? Returning occasional 520 status codes, loading issues (very slow loading time in fact), no css.. etc. Incorrect loading https://prnt.sc/w89wi0 I'd provide more screenshots but now the site isn't even...
  8. Goose

    Solved +1 added when mine blocks

    You see, when you try to parse {_spawnerpick} as an integer, you're actually trying to parse "&8[&b&lStarter Pickaxe&8]" as an integer, which we know cant happen. You can try this: on break: if name of player's tool contains "&8[&b&lStarter Pickaxe&8]": set {_name} to uncolored name...
  9. Goose

    How to detect above of the player is air?

    You'd be right. Minecraft blocks are actually just 1 cubic meter in size. EDIT: Could try if block above player is air
  10. Goose

    How to make tnt only explode blocks from a list

    Maybe not a particularly efficient implementation but it's what I could come up with quickly on explode: cancel event loop exploded blocks where [{blockplaced::*} contains input]: break block at loop-value's location
  11. Goose

    Skript addons

    We can't tell you exactly what addons your script needs because we don't have your script
  12. Goose

    question

    please mark the post as solved
  13. Goose

    unbreakable item

    on join: give player unbreakable diamond axe simple as that, or if you actually wanted to do the nbt yourself, on join: give player diamond axe with nbt "{Unbreakable:1b}" ^ this requires SkBee
  14. Goose

    How do I remove italics on item names?

    Yes Nyan, this is currently a bug with Spigot 1.16.1, currently, until they patch it, you cannot do anything about this
  15. Goose

    Also I'm not sure why the gray bar doubled in size, i've been trying to fix it for several weeks...

    Also I'm not sure why the gray bar doubled in size, i've been trying to fix it for several weeks with no outcome
  16. Goose

    Hey BaeFell ;) I found another typo on the site, when you guys are performing upgrades on the...

    Hey BaeFell ;) I found another typo on the site, when you guys are performing upgrades on the parser, it'll usually have a message, in this message, it says "You may notice distruption to parsing ...", the error is that it says "distruption", when it's spelled "disruption", here is evidence of...
  17. Goose

    Homes GUI teleport

    You can get the name of the slot the player clicked by using "event-item's name"
  18. Goose

    Solved Location in a function

    Use "event-block's location"
  19. Goose

    /dupe plugin for cosmic tests

    indeed, doesn't mean i can't give a hand too
  20. Goose

    /dupe plugin for cosmic tests

    command dupe <int=1>: permission: dupe.use permission message: &cInsufficient permissions! usage: &c/dupe [amount] trigger: give (arg * item amount of player's tool) of player's tool to player if player's tool is book, book and quill or enchanted book