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

    sidebar/scoreboard player kills/deaths not updating - no errors

    Use id based scoreboards and then edit them. Example: set id score "&2- &aMoney: &2%{money::%player%}" in sidebar of player to 13 with id "scoreboard_money_%player%" edit score with id "scoreboard_money_%player%" to "&2- &aMoney: &2%{money::%player%}" and 13
  2. Nikd0

    Replace all help

    You must change your 10th row: send "&8[&6Ban system&8] &6%{msg}%" Also I recommend you to change all of {msg} to {_msg} cause it'll be "only-this-command variable"
  3. Nikd0

    combat log help

    Yes, those commands probably can't be canceled, because you could cancel /sk reload command and then you'll be no longer able to reload plugins.
  4. Nikd0

    What's the error?

    LargeSk, Skellett and SharpSk addons have this event: on world change: Do you have the required addon (at least one of them)?
  5. Nikd0

    Skript addons

    1.8 spigot, minecraft and plugins are outdated and often no longer supported, I recommend you to update.
  6. Nikd0

    The problem of "in world world"

    No, region always shows the world. Anyway... Why don't you want to use replace or split?
  7. Nikd0

    What's the error?

    Have you got any errors? Any console errors? What's your skript version? Try to use set slot %slot% of current inventory of player to %your item%
  8. Nikd0

    Replace all help

    Use set {_msg} to "%{banlist::*}%" replace all "and" in {_msg} with ","
  9. Nikd0

    Solved it says /skript help

    That's on you to find out.
  10. Nikd0

    combat log help

    So.. this doesn't work? on command "/skript help": wait 3 ticks send "&aInteresting... Is this the skript's help command?" Pay attention it will only detect "/skript help" - not "/sk help"
  11. Nikd0

    combat log help

    http://en.njol.ch/projects/skript/doc/commands command /commandname <arguments>: # arguments are explained below description: A description of what this command does usage: How to use the command, e.g. /commandname <arguments> # If omitted this defaults to something similar to how the...
  12. Nikd0

    Solved it says /skript help

    You're using bad version of skript. Downgrade/Upgrade it.
  13. Nikd0

    Can't I use this type of code?

    Change to vanilla..: :emoji_upside_down: (Quote from: https://forums.skunity.com/threads/another-gui-inside-the-gui.12257/#post-52169)
  14. Nikd0

    Solved Another GUI inside the GUI

    That's copied from the original code.
  15. Nikd0

    Solved Another GUI inside the GUI

    #.... if {다나잡화점 메뉴.%player%} is "sell": open chest with 5 rows named "광물은 언제든지 환영이라구요!" to player set slot 10 of current inventory of player to coal named "석탄 1개" with lore "구매가 : 1 에메" #.... on inventory click: if name of current inventory of player is"광물은 언제든지...
  16. Nikd0

    How can i add perms using custom perms.

    My god, you're badly using % and " First - permission add arg-2 or add "%arg-2%" #but you'll be probably warned that it's unnecesseary Then - player to arg-1's permissions #you cannot use anything else
  17. Nikd0

    Solved Need some help on this new piece of skript.

    First... options start with @ Then, every variable that starts with _ is only gonna work in one command/function/... So you have to put your first 2 lines from options to your command ;) command /sell: trigger: set {_stone} to number of stone in Player's inventory set {_value} to 3 *...
  18. Nikd0

    Solved When the player holds the item, execute the command (Help Me!)

    Something like this should work: format slot 32 of player with diamond named "diamond 1" with lore "64 emeralds" to close then run [execute console command "/give %player% minecraft:emerald 64"] -> [execute console command "/clear %player% minecraft:diamond 1"] But I would highly recommend you...
  19. Nikd0

    I need help

    if /skript is not working on your server upgrade/downgrade your skript version.
  20. Nikd0

    on righclick on player

    on right click on [a] player: send "It's working!" [to player] Attacker/Victim can only be used in "on damage" event! In this event you use: - "player" for player who clicked - "clicked player" (or sth like that) for player who's been clicked Note: parts with [] are optional, remove them or...