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

    Skript LeaderBoard

    plural expression (1¦(top|first)|2¦(last)) %integer% (values|elements) of %objects% [formatted] as %text%: You need this Script - MirrorUtils | skUnity Forums
  2. Uzumaki

    I need help with a team balance skript

    https://github.com/andrei923/BombLobbers/blob/9ef103827257ae26ec22cbbf2f555f52f30c0095/BombLobbers.sk#L354
  3. Uzumaki

    make player can fly only in a own region area

    try on region enter: if player has permission "emzencore.flyable": loop owners of region: if loop-value-1 is player: message "&eYou have &bPlayPlus&6+ &eYou're allowed to fly!" to player play sound "ENTITY_EXPERIENCE_ORB_PICKUP" to player...
  4. Uzumaki

    Ersatz Addon is not working for me please help!!!

    use this addon instead Addon - skript-placeholders | skUnity Forums
  5. Uzumaki

    Solved question

    on load: set {prefix} to "&6&lSA:MC" send "%{prefix}% hi" or just use options
  6. Uzumaki

    Solved Capturing a player

    make player ride player2 and cancel the dismount packet
  7. Uzumaki

    Solved Check if chest is double chest?

    https://github.com/andrei923/QuickSurvivalGames/blob/26c625db86a9e8a20751f2e4f42072c6ab31cb5c/SG.sk#L544
  8. Uzumaki

    Solved Transparent player

    Solved - How to make players transparent | skUnity Forums
  9. Uzumaki

    Block placing not working

    {woolcolor.%player%} is a text, not a block use set {woolcolor.%player%} to "%arg-1% wool" parsed as material
  10. Uzumaki

    Solved Spectator invisibility to each other?

    hide player from all players
  11. Uzumaki

    Solved Trying to get 1/4th of entities in a list

    set {_value1} to a random element out of {_list::*} remove {_value1} from {_list::*} set {_value2} to a random element out of {_list::*} remove {_value2} from {_list::*}
  12. Uzumaki

    Damage

    on damage: if name of attacker's tool is "Wither 2.0" : cancel event damage victim by 100 heart
  13. Uzumaki

    Coinsystem Skript doesn`t work

    a mess, check if the coins are set on join event, not every second, also use skript-yaml.
  14. Uzumaki

    Solved Trying to get 1/4th of entities in a list

    set {_list::*} to "helo1", "helo2" and "helo3" broadcast "%{_list::3}%" #should broadcast hello3
  15. Uzumaki

    How to check if a Var reached a number?

    loop 100 times: if {xp} is loop-number: send "your xp is %loop-number%" #do stuff
  16. Uzumaki

    Solved on step skript

    SkriptLang/skript-aliases: New aliases for Skript plugin (github.com)
  17. Uzumaki

    Vivecraft Hand Pos Detection

    set {_test} to metadata value "head.pos" of player
  18. Uzumaki

    Solved Trying to understand functions

    Functions | skUnity Forums function test(item: text): broadcast "yo i just break a %{_item}%" on break of Stripped Acacia Log: if lore of tool is "Pickaxe": cancel event test("%event-block%") send "&e%{_i}%" to player
  19. Uzumaki

    Actionbars :P

    edited
  20. Uzumaki

    Actionbars :P

    function toggle_action_bar(p: player, watching: player): if {actionBar::%{_p}%} is set: delete {actionBar::%{_p}%} stop set {actionBar::%{_p}%} to true while {actionBar::%{_p}%} is set: send action bar "&cCurrently watching: &e%{_watching}%" to {_p}...