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

    Solved please tell me how to drop items to specific coordinates to get new items.

    set {_loc} to location(0, 0, 0, world "survival") set {_item} to diamond sword named "yes" drop 1 of {_item} at {_loc}
  2. jaylawl

    API jaylawl's (scoreboard) TagAPI - Condense & fix

    2.1.2 Condensed a lot of the code (due to helpful hints) Fixed the conditions sometimes not working as expected You can now add any object (text/boolean/number/integer/etc) as a scoreboard tag
  3. jaylawl

    Addon skript-mirror

    Hey, thanks for that recent update. I'm quite glad this add-on keeps receiving improvements. Also very glad to see you're making here-and-there updates to the gitbook. Below is one of my codes using skript-mirror. As you can see, there are many sections that require the use of getScoreboardTags...
  4. jaylawl

    Solved skript-mirror Bedwars Plugin

    https://github.com/andrei1058/BedWars1058/blob/master/com/andrei1058/bedwars/api/GeneratorUpgradeEvent.java https://github.com/andrei1058/BedWars1058/blob/master/com/andrei1058/bedwars/api/GameStateChangeEvent.java There are no (event-)players in these events you will have to set a {_player}...
  5. jaylawl

    Nbt of Block

    Instead of setting the nbt of the block, try replacing the event-block with a new one: set event-block to spawner with custom nbt "{}" or maybe: set {_spawner} to spawner named "asd" with custom nbt "{}" set event-block to {_spawner} I know this doesn't make much sense but doing enough hacky...
  6. jaylawl

    sign gui input

    You're gonna have to deal with either packets or skript-mirror, afaik there's no other way
  7. jaylawl

    API jaylawl's (scoreboard) TagAPI - Minor bugfix

    2.1.1 Fixed console errors popping when getting values from the expressions
  8. jaylawl

    jaylawl's Snippets

    [Add-on] = Required add-on(s) __________________________________________________________ randomUUID() function reverseNumber() function function reverseNumber(number: number) :: number: return ({_number} * -1) set {_x} to reverseNumber(x of victim's velocity)[/SPOILER] treeLoop()...
  9. jaylawl

    Other [NBTSk] How to use NBTSk!

    I'm not the best to judge, but i think the resource moderation team would've automatically classified it as API if it were to be
  10. jaylawl

    Other [NBTSk] How to use NBTSk!

    I believe publishing is never wrong. There's always somebody who might find it useful
  11. jaylawl

    Anything from GUIs to random generators

    Name: Julian, a.k.a jaylawl From: Germany :emoji_flag_de: Skript experience: ~2 Years Speed: Small/simple scripts can be made within minutes Complex stuff may take it's time Payment: Relative to time worked (~15 € / h) Payable via PayPal or amazon(.de!) gift cards Minecraft versions: 1.8...
  12. jaylawl

    Other [NBTSk] How to use NBTSk!

    Hey, excited to check out your upcoming resource. Just wanted to throw out there that Skript doesn't support NBT because it requires net.minecraft.server reflection (aka NMS), which has a habit of changing with every major minecraft release and on top of it is obfuscated. They're taking a pass...
  13. jaylawl

    Addon skUtilities

    So? It's not uncommon for people to take a break
  14. jaylawl

    Addon skUtilities

    Suggestion: Add "yaml node is %type%" condition. Right now we're capable of looping through our yaml files quite alright, but it's hard and especially messy to determine what the looped yaml node functions as. I'm suggesting usage like this: loop yaml nodes with keys "" of file {_file}...
  15. jaylawl

    Solved level up

    *What* does not work for you?
  16. jaylawl

    please tell me how to drop items to specific coordinates to get new items

    set {_item} to diamond sword named "cool" drop 1 of {_item} at player's location
  17. jaylawl

    Script Skript Reloading Shorthands - Awesome update

    1.2 Changelog Added "priority load" by default, all scripts prefixed with "_" will be loaded before others this is configurable in the script's options the prefix is also configurable Added "block native commands" this allows to block usage of the Skript-native commands "/skript reload all"...
  18. jaylawl

    Loop value or index help

    You should also post the associated yaml file's content
  19. jaylawl

    API jaylawl's (scoreboard) TagAPI - Custom expression/condition Update

    This API now supports custom expressions/conditions by usage of skript-mirror. Makes a lot of sense, since the API was depending on skript-mirror anyway. 2.1 - Added custom expressions & conditions as replacement for functions - functions from 2.0 are still kept in the file and are functional...
  20. jaylawl

    Addon skript-mirror

    Small bug: condition test with %text%: check: continue if expression-1 = "asd" command /test: trigger: test with "asd" send "yes" %text% or %texts% will cause the command /test to not load at all, but not giving out any parser errors. however it will work with...