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

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

  1. Dabriel

    How to remove default item?

    Hm, try remove 6 bone from player's inventory This is really weird tho, it should work just like Shane's code provided above. Maybe because you are forcing it to remove 6 even tho you have 5 normal, so skript is being forced to remove 6 of "bone" no matter what the name is.
  2. Dabriel

    Name of dropped item

    This is correct Just replace %name of dropped item% with %name of event-entity%
  3. Dabriel

    Sell Function Help

    Change if {_p} has {_amount} of {_item}: to if {_p}'s inventory has {_amount} of {_item}:
  4. Dabriel

    Disguise as block skript

    You need umbaska for this command /admin: trigger: disguise player as creeper"
  5. Dabriel

    Enchanted books (Create/Add Enchantments)

    This is actually pretty neat. can be used in some stuff and it's a good thing to actually look at the code and learn from it. Nice :thumbs_up:
  6. Dabriel

    Script EmpireEco (Skript Item Based Economy) | [BANKER] [API] - Less add-ons!

    I realized some add-ons weren't really required. Now they are removed.
  7. Dabriel

    Script EmpireHorses █ RPG | Levels | Multi-Eco Support | Config | Unique █ 1.0

    EmpireHorses is an RPG script that helps your server's horses to improve. Please report any bugs you can find in the discussions section and not in the reviews - Special named saddle to spawn your RPG horse - This script will offer an upgrading system up to level 3 - Each level is fully...
  8. Dabriel

    Script EmpireEco (Skript Item Based Economy) | [BANKER] [API] - Page Update!

    Finally, the page design is done. I also added a better-explained API with examples.
  9. Dabriel

    Script EmpireEco (Skript Item Based Economy) | [BANKER] [API] 1.2 BETA

    EmpireEco is an Item-Based Economy plugin. It was meant for RPG servers that wish to have a similar coin system like MMO games (e. g. WoW or GuildWars 2) This version is BETA. Please report any bugs you can find in the discussions section and not in the reviews. - Item-based economy, which...
  10. Dabriel

    Solved Give Item for player and set name for Item

    command /gi w3 <player>: permission: ocscho.ngucac trigger: if arg-1 is set: set {item} to 1 paper named "&fPaper chui dit" with lore "&fChui dit cuc phe cho nguoi benh tri" give {item} to arg-1
  11. Dabriel

    on region enter: (bugg)

    what is your skript version?
  12. Dabriel

    Solved How to use name of clicked item in a function?

    function EXAMPLE(p: player, c: string): send "test" to {_p} if {_c} is "TEST": send "it worked" to {_p} on inventory click: if clicked item is not air: EXAMPLE(player, name of clicked item)
  13. Dabriel

    on region enter: (bugg)

    on region enter: if "%region%" contains "kitpvp": #code
  14. Dabriel

    Solved sk mirror not working?

    import: org.bukkit.event.player.PlayerFishEvent on PlayerFishEvent: #code
  15. Dabriel

    EmpireEco (Skript Item Based Economy) | [BANKER] [API]

    a page design is being worked on. EMPIREECO EmpireEco is an Item Based Economy plugin. It was meant for RPG servers that wish to have a similar coin system like MMO games (e. g. WoW or GuildWars 2) This version is BETA. Please report any bugs you can find in the discussions section and not the...
  16. Dabriel

    Force respawn player (Error)

    Skellet force respawn of victim RandomSK force respawn victim
  17. Dabriel

    Solved if variable is greater than argument - not working

    I'm glad this is solved, but I just want to help you out a bit here. instead of saying "greater than" just put >= e. g. if {token.balance.%uuid of player%} >= arg-3: That way, if you had 50 tokens, you will be able to send it no matter what, and then you will have 0. If it was.... if...
  18. Dabriel

    Function does not exist

    what? this isn't my thread.
  19. Dabriel

    Function does not exist

    I tested this, it worked. function enchant(p: player, arg: string): set {_uuid} to uuid of {_p} if {_arg} is "123": wait 1 tick open chest with 6 rows named "&c&l SMED &e- {_p}" to {_p} format slot 0 of {_p} with white glass named " " with lore "" to be...
  20. Dabriel

    Solved Set the speed of the horse

    Hello there Skripters! I'm trying to set the speed of the horse, so when it spawns, the speed will always be the same, it wont be random. Giving the horse a potion effect won't do it, because the horse will spawn with random speed numbers. I heard it's possible using NBT tags? Please, let's...