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

    giving custom potions?

    web page I use to made the custom potion https://minecraft.tools/en/potion.php you can use a web to make the custom potions, then give yourself using a command block the potion, save the potion to a variable example {granade::*} then give the player the granade. #working i test it command...
  2. Mich

    Solved Teleport all players to a location if true

    #This is a example because I don't know how yo join the mini game you can change this. Command /join: Trigger: If {minigame::%player%} exists: Message "you already join the game" Else: Set {minigame::%player%} to true Message "you join mini...
  3. Mich

    Solved Help me weaken/remove melee attacks from tridents on my server

    Instead of on left click try on damage
  4. Mich

    Giving Specific Mob Spawners

    Sorry I can't help I don't know anything about nbt
  5. Mich

    Giving Specific Mob Spawners

    CQUOTE="Brennon, post: 61500, member: 22333"]I need the ability to give player's mob spawners other than pig, such as cow, creeper, and sheep. I am on 1.8.8, using skript version 2.2-dev36. I have SkStuff version 2.2. I've tried all the basic "give cow spawner" and it'll give the spawner, but...
  6. Mich

    Hover Chat

    I don't understand can you give a example or a screenshot
  7. Mich

    Solved how to make {...} amount of paper in gui

    I found this check I hope this help https://forums.skunity.com/threads/variable-in-quantity-of-items-in-a-gui.4395/
  8. Mich

    Solved how to make {...} amount of paper in gui

    #This is the way I know how to make a gui this is how I can help sorry. But i test it and it works command /vanillaGUI: description: The laziest best way of doing something. trigger: open chest inventory with 1 rows named "&cLazy gurl." to player set slot 0 of player's...
  9. Mich

    Solved math with variables?

    command /test: trigger: set {_x} to random integer between 1 and 100 set {_y} to random integer between 1 and 100 set {_result} to ({_x} + {_y}) message "%{_x}% + %{_y}% = %{_result}%"
  10. Mich

    Solved How do you make a loop run until you run a command and then terminate the second that command is run

    function pvpevents(): wait 5 seconds while {events} exists: set {Randomizer} to random integer between 2 and 4 set {_player} to random element of all players if {Randomizer} = 2: send "Giving &b&lswiftness 4 &rto &6%{_player}%!" to {_player} #in this...
  11. Mich

    Need help with setting variable to scoreboard value

    I'm not sure if that can be done using commands but if you download skbee you can create scoreboards with script and avoid console spam. Here is a tutorial on how to create them https://forums.skunity.com/threads/skbee-easy-tutorial-for-scoreboards.15198/ And a tip if want the scoreboard to be...
  12. Mich

    Pathfind for 1.18.2?

    I can't find a working addon for 1.18.2 with pathfind. I tried SKquery, skmisk and stuff and is not working. Any other addon? Or can someone make a simple pathfind addon?
  13. Mich

    spawning items...?

    command /setlocation: trigger: set {drop_items} to location of player message "Drop location set at %{drop_items}%" command /drop: trigger: drop 1 iron sword at {drop_items} drop 1 diamond at {drop_items}
  14. Mich

    need help with chest gui

    Follow this tutorial https://forums.skunity.com/threads/vanilla-guis.8939/ command /clearGUI: trigger: open chest inventory with 1 rows named "&cClear your inventory." to player set slot 4 of player's current inventory to lime wool named "&6Clear inventory" on inventory...
  15. Mich

    How do I use Vault and Skript

  16. Mich

    make it so a command checks everyone

    Finally to know this I type in Google SK unity message players all players in a list Finally you welcome I find the answer here tanks to Shane bee https://forums.skunity.com/threads/help-with-send-a-message-to-all-players-in-players.6820/
  17. Mich

    make it so a command checks everyone

    Try this command /join: trigger: add player to {game_guns::*} #to remove try remove player from {game_guns::*} command /start: trigger: give a diamond sword to the player #This will give the item for the one who execute /start loop {game_guns::*}...
  18. Mich

    make it so a command checks everyone

    Try this make sure to add players to {game_guns::*} command /join: trigger: add player to {game_guns::*} #to remove try remove player from {game_guns::*} command /start: trigger: give a diamond sword to the player #This will give the item for the one who execute...
  19. Mich

    make it so a command checks everyone

    To clear the variable do delete {game_guns::*} Let me see if I find how to give items to payers inside a list
  20. Mich

    make it so a command checks everyone

    Check if the list contains players Command /test: Trigger: Add player to {game_guns::*} Message "%{game_guns::*}%" #if not try Command /test: Trigger: Add "%player%" to {game_guns::*} Message "%{game_guns::*}%"