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

    How should I go about allowing numbers to go above 9.22e18?

    You can try storing the number in text variables, so this is an example set {_var} to "%2^53 * 2%" The variable {_var} now holds twice the 64 bit integer limit in text!
  2. Goose

    Quests skript not working

    On line 4 you used {quest1.%{_p}%} when you were supposed to use {quest1.%player%}
  3. Goose

    Solved Giving each loop-player an item

    np, just make sure to mark the post as solved and maybe mark my post as best answer if you want owo
  4. Goose

    it's the hjonkening

    it's the hjonkening
  5. Goose

    Solved buff on block

    No problem! Just make sure to mark the post as solved! (maybe even mark my post as best answer owo)
  6. Goose

    Solved Giving each loop-player an item

    1st. You should format your code so it is indented and easy to read 2nd. Instead of using "set {_survivor::*}'s", just do "set loop-value's"
  7. Goose

    Solved Is it possible to set variable as player?

    You can set the variable to a player set {_player} to player then open the chest to that player with the variable open chest with 1 row named "Smith Trading Successful" to {_player}
  8. Goose

    Solved buff on block

    on any movement: set {_loc} to location at 0.5, 3.5, -0.5 if location of block below player is {_loc}: send "it works <o/"
  9. Goose

    Can i do a fake spectator mode

    Please wait 24 hours before bumping. This was really hard to read, but I assume you want spectator mode but people cannot go through blocks. This can be done by making some sort of pseudo spectator thing. command spectator: trigger: if {spectators::*} doesn't contain player...
  10. Goose

    Messages showing in specific world (Skript)

    Don't you need to cancel the chat so it doesn't get sent twice? Or does it cancel automatically
  11. Goose

    Solved problem with scoreboard, actionbar, and title

    When using options in strings and variables, the percentage signs are not necessary
  12. Goose

    help me plz

    "on tool change" is not recognized in spectator mode because the spectator tools are not itemstacks so unless there is another event im unaware of you cant do much
  13. Goose

    Efficient way to make mobs spawn around player

    this is a skript i made that makes 2-3 zombies spawn in a radius of 5 blocks around the player every 30 seconds every 30 seconds: loop all players: loop (random integer between 2 and 3) times: loop blocks in radius 5 around loop-player: if loop-block is...
  14. Goose

    Script that removes items with lore after death

    on death: loop all items in victim's inventory: if loop-item's lore contains "Illegal item": set loop-item to air
  15. Goose

    Solved problem with scoreboard, actionbar, and title

    Please wait 24 hours before bumping my guy o-o
  16. Goose

    Solved Unable to change a variable while in a GUI.

    You even posted this on the Minehut discord. ;^; Anyways, first {daynightcycle} is not an option so you had to remove the @. Here, try this. variables: {daynightcycle} = true {defaultgamemode} = survival #0 = adventure, 1 = survival 2 = creative, 3 = spectator. What gamemode a person...
  17. Goose

    How to loop sounds

    I'm afraid you cannot loop commands/sounds, or at least not to my knowledge.
  18. Goose

    Messages showing in specific world (Skript)

    loop all players in world "kitpvp": send "blah blah" to loop-player
  19. Goose

    Solved Variable Wont Update

    Good point
  20. Goose

    Solved Variable Wont Update

    Why do I feel like this skript could be simplified Probably all the functions