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

    I need help

    We are NOT going to create plugins for you here.
  2. Nikd0

    I need help

    I am absolutely sure that you have read the documentation.
  3. Nikd0

    Glitched text

    replace all "&0", "&1", "&2", "&3", "&4", "&5", "&6", "&7", "&8", "&9", "&a", "&b", "&c", "&d", "&e", "&f", "&l", "&m", "&n", "&o" and "&r" with " " in {GlitchedMessage.%player%} too long, too hard. i'd rather use uncolored {GlitchedMessage.%player%}
  4. Nikd0

    Solved Need help to update player to player's uuid

    are you sure that {_player} is parsed as player or offline player? text/string won't work
  5. Nikd0

    Solved Giving player a item from a variable

    what about the thread i linked?
  6. Nikd0

    am i doing wrong?

    you can't cancel event just inside a condition...
  7. Nikd0

    Solved Giving player a item from a variable

    https://forums.skunity.com/threads/giving-variable-not-working.13458/
  8. Nikd0

    Solved Set blocks diagonally?

    set {_loc} to %your location% #eg. 'location of player' or 'location at 3, 5, 18 in world "world"' add 1 to x-coordinate of {_loc} add 1 to z-coordinate of {_loc} set block at {_loc} to diamond block
  9. Nikd0

    Solved Console Executes Random Commands from List of Commands

    You're welcome! Mark the thread as solved for others ;)
  10. Nikd0

    Solved Console Executes Random Commands from List of Commands

    every ?? ticks: set {_x} to random integer between 1 and 3 make console execute command "/cmd%{_x}%" Eventually, you can use conditions: if {_x} = 1: make console execute "myfancycommand" else if {_x} = 2: make console execute "myuglycommand" else if {_x} = 3...
  11. Nikd0

    event-item lore help

    in my opinion, depends on where are u using the "event-item"
  12. Nikd0

    How to get the arguments of an "On command" event

    mark the thread as solved
  13. Nikd0

    Solved How do I get all integers between two numbers

    A maths lesson: There is a infinite amount of numbers between two selected ones. Therefore, I assume you wanted integers function betweenInts(a: integer, b: integer) :: text: #assuming that b > a set {_nmb} to {_a} +1 while {_nmb} < {_b}: if {_result} is not set: set...
  14. Nikd0

    issue with list variables

    set {_winner} to max({boss::*}) # this returns the highest amount of damage dealt broadcast "test: %{_winner}%" # this returns "<none>" You did not send us the function. You may have done something wrong in there. (Also, use [ code ] like I did.)
  15. Nikd0

    Error making a loop

    https://en.njol.ch/projects/skript/doc/loops always read the documentation before asking
  16. Nikd0

    Solved Locking specific inventory slot of player

    if clicked slot = 7: If this solved your problem, please mark the thread as solved and you may also mark my answer as the best one ;)
  17. Nikd0

    am i doing wrong?

    no, it will NOT work. It would create an infinite loop of executing the same command!
  18. Nikd0

    am i doing wrong?

    NEVER!!! This creates an infinite loop as it overrides the first command!
  19. Nikd0

    Variable {%event-block%} doesn't seem to work properly

    I think event-block is different every time (not sure though). Try to use "name of event-block" or sth like that
  20. Nikd0

    I cant seem to get players to write custom text

    use %arg 1%, %arg-1% or %argument 1% for arguments make player execute "arm addmember %arg-1%" also, the "player is not online" is not skript's fault. it is due to the other plugin you are using (arm command)