Recent content by AsuDev

  • 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 comminuty!

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

  1. AsuDev

    Skript Chest Inventory Serialization (SkBee)

    This is a little tutorial on how to serialize chest inventories and items using SkBee. Main serialization function function serializeInventoryContents(inv: inventory) :: objects: loop (rows of {_inv})*9 times: set {_i} to slot (loop-value - 1) of {_inv} set...
  2. AsuDev

    Script BeeShops 1.0

    BeeShops is a script that allows players to create their own simple shops in skript code using the power of SkBee. Note: This script is meant to be a basis for a shop script. This is not a completed product, but something you can build off of to complete what you need. Features: - Buy/Sell...
  3. AsuDev

    BeeShops

    BeeShops is a script that allows players to create their own simple shops in skript code using the power of SkBee. Note: This script is meant to be a basis for a shop script. This is not a completed product, but something you can build off of to complete what you need. Features: - Buy/Sell...
  4. AsuDev

    Solved How to make level skript

    Don't use a periodical for checking to see if a player leveled up. Just make a formula or write down vars for the amount each level and then use a function to check. This way is much more efficient. Untested code: on join: set {exp::%uuid of player%} to 0 set {level::%uuid of player%} to...
  5. AsuDev

    damage victim by X doesn't count as death

    make %living entity% damage %living entity% by %number% set damage to final damage
  6. AsuDev

    Solved formatting with morkazsk | parsing uuid to player

    set {topkillers::*} to sorted {kills::*} from highest to lowest with format "@index^@value" set {_place} to 0 loop {topkillers::*}: add 1 to {_place} set {_data::*} to split loop-value by "^" set {_player} to "%{_data::1}%" parsed as offline...
  7. AsuDev

    Give all players in world item

    set {_w} to player's world loop all players in world {_w}: give 64 of fire charge to loop-player #idk what the alias for fire charge is
  8. AsuDev

    Completely insane glitch

    Version of Skript and Spigot?
  9. AsuDev

    Individual Holograms

    I don't think you can do it all in one hologram (with packets you probably can). I haven't done anything like this but what you can probably do is make holograms for specific players and hide them. Addon (With ProtocolLib): https://forums.skunity.com/resources/skript-holo.748/ Docs...
  10. AsuDev

    Solved Close anvil on open

    on rightclick on anvil: cancel event make player execute command "spawn"
  11. AsuDev

    NBT Issue

    Remove the word `custom` from the syntax. For item nbt specify it as item-nbt. set {_item} to 1 of diamond sword with nbt "{HideFlags:63}" named "Sword" add "{Unbreakable:1b}" to item-nbt of {_item}
  12. AsuDev

    NBT Issue

    Use SkBee addon for nbt. I am pretty sure NBT stuff was removed from SkStuff in the newer versions. https://forums.skunity.com/resources/skbee.976/
  13. AsuDev

    Second to last item in list?

    Getting second to last element in list (https://skripthub.net/docs/?id=942) set {_element} to the (size of {_list::*} - 1)th element out of {_list::*} Getting last 40 elements of a list (Not tested, would recommend adding some conditions) set {_s} to size of {_list::*} loop 40 times: add...
  14. AsuDev

    So skript's on drugs.

    Try using Skript 2.2 dev36, it is the most updated skript version for 1.8.8. You can download here: https://skripttools.net/skript I have used and tested 1.8.8 for a long time and dev36 is the best version for it in my opinion. If this does not work out, then your issue lies with the versions...
  15. AsuDev

    So skript's on drugs.

    Skript version? Spigot version? Skellett version? Offline players is an expression in skellett so you might have a version mismatch.