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

    Reset map/world to original

    oh, if so split it into smaller areas maybe per chunk and load each one separately
  2. M

    Reset map/world to original

    save it as a schematic then using skript you can load it like this command /loadregion: permission: loadregion.use trigger: send "&aLoading schematic 'myRegion'..." execute console command "schem load myRegion" wait 1 tick execute player command "//paste...
  3. M

    Ranks and Permissions!

    you can use the little format button </> and that should allow you to format code or just use [ CODE][ /CODE]
  4. M

    Reset map/world to original

    you save a region using world edit and load it using skript or just download a plugin that does this
  5. M

    Unbreakable armor stands

    maybe this? uses names insted command /spawnarmorstand: permission: op trigger: spawn armor stand at location of player set {_as} to last spawned entity set custom name of {_as} to "SpecialArmorStand" set custom name visibility of {_as} to false on damage...
  6. M

    SkEditor

    i probably cant get it to run because I use a school chromebook but I am going to try using this on my PC
  7. M

    SkEditor

    dang this looks cool, sadly I don't think I can run this on my chrome book but I will probably use it on my other computer for the server I am remaking!
  8. M

    Unbreakable armor stands

    try this, if it sends the message it works otherwise I'll change it command /spawnarmorstand: permission: op trigger: spawn armor stand at location of player set {_as} to last spawned entity set metadata "special" of {_as} to true on damage of armor stand: if...
  9. M

    Unbreakable armor stands

    what does the tool or the armor stand
  10. M

    Unbreakable armor stands

    here you go command /spawnarmorstand: permission: op trigger: spawn armor stand at location of player set {_as} to last spawned entity set metadata "special" of {_as} to true on damage of armor stand: if metadata "special" of victim is true: add 1 to...
  11. M

    Need help 2 skripts, cant find anything like it and I dont know much

    bru, just look at the docs. the multivers thing is easy too ether the world name will work or just use execute console command tbh guis may be a bit tricky so command test: trigger: open chest inventory with 3 rows named "dirty diamond" to player wait 1 tick set slot...
  12. M

    Bossbar title is not a location

    nvm I think I found your problem, set {_bar} to boss bar with id "test-bar" with title "Test BossBar" has a different syntax than the one you currently have. adapted version: set {_bar} to boss bar with id {_barName} with title {_message}
  13. M

    Bossbar title is not a location

    can you send me the full skript?
  14. M

    Unbreakable armor stands

    this small example should work on damage of armor stand: send "bonk" to attacker #code can be executed In front of cancel event cancel event add 1 to {hits} #code can be executed after cancel event if {hits} >= 10: send "you have hit the armor stand %{hits}% times" to...
  15. M

    Bossbar title is not a location

    it is parsing it as a coordinate instead of the wanted text, so try create bossbar named {_barName} with title {_message}
  16. M

    idk SkHTTP post/get request

    the urls are not the ones you would want to use, they are filler urls. also this plugin is a good one to use it seems, where as from my perspective you could make a shop online without the need of getting a 3rd party involved so do some research and test builds of some skripts and hopefully you...
  17. M

    Script Tools Skbee Crafting Recipe Generator

    Added 3.11.1 SkBee support
  18. M

    I need help with this

    thanks
  19. M

    idk SkHTTP post/get request

    here this should work command /test: trigger: set {_client} to new http client set {_request} to new POST request to "https://pastebin.com/api/api_post.php" add "Content-Type: application/x-www-form-urlencoded" to headers of {_request} set {_body} to...