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

    Alternative to Tablisknu

    Hi, I spent an entire day trying to figure out why I could get Tablisknu to work on my 1.16.5 server. I tested this simple code on script load: loop players: set displayed skin of loop-player to green skin But nothing happened and it gave me this huge error on the console. It was...
  2. PatoFrango

    DiscoFloors

    About DiscoFloors is a very simple script that allows you to easily create colorful dance floors. Requirements I wrote this script using just vanilla Skript so that you don’t need to install any additional addons. Features Easily create dance floors with a corner-click system, just like...
  3. PatoFrango

    Solved Days since date

    Hi, Is there a way to get the number of days since a specific date (without SkStuff)? Thanks in advance. EDIT: Solved function daysSince(d: date) :: integer: set {_diff} to floor((unix timestamp of now - unix timestamp of {_d}) / 86400) return {_diff} A Unix timestamp is the amount...
  4. PatoFrango

    Vixio interfering with name of %itemstack% expression

    Hi, I installed Vixio the other day and thanks to it I can no longer get the name of an item, because Vixio thinks I'm referring to the name of a Discord channel/server. set {_name} to name of {_item} The variable won't be set to anything. Is there a way to fix this? Thanks in advance. Ok so...
  5. PatoFrango

    Send resource pack with skript-mirror

    Hi, Since I won't be able to update Skript anymore because of the aliase update and the change of vanilla commands in 1.13 I needed to work with Skript's "send resource pack with hash" effect but it hand't been released in the version I'm using yet. As a workaround could anyone tell me how I...
  6. PatoFrango

    MundoSK skin from url shows the minecraft dirt screen for a bit

    Hi, So if I apply a skin through an url with MundoSK set {_uuid} to uuid of {_p} set {_skin} to retrieved skin from url getColorLink({penguinColor::%{_uuid}%}) set displayed skin of {_p} to {_skin} If I put that in a command and execute it, the game will show me the minecraft dirt screen for a...
  7. PatoFrango

    MYSTERY: MundoSK’s retrieve skin

    Hi, I’m having an issue regarding MundoSK’s retrieve skin from url feature. I have the following code: on join: set {_skin} to retrieved skin from url “myurl.png” set displayed skin of player to {_skin} Now the problem is, I’ve tested it with many skins but only one seems to actually...
  8. PatoFrango

    Solved Set a player's skin through url

    Hi, I'd like to know if there's a way to set the skin of a player through the url of the image, not by grabbing the skin of an already existing user. Thanks in advance. bump bump bump bump
  9. PatoFrango

    Get week day

    Hi, I'm having trouble trying to figure out exactly how I get the day of the week. I've learned how to get the hour and day and how to format it, but I still haven't understood how I would get the current weekday. set {_time} to now set {_time} to {_time} formatted as "D" replace all "1" in...
  10. PatoFrango

    Check regions at chunk

    Hi, Is it possible to check the regions at a certain chunk? I tried doing this: on chunk unload: loop regions at chunk: "%loop-value%" contains "pinksos" cancel event but it didn't work. Thank you.
  11. PatoFrango

    Owner of current inventory

    Hi, How can I check the region at the owner of the current inventory of a player? I've tried doing on inventory click: set {_owner} to owner of player's current inventory "%region at {_owner}%" contains "vault%player%" And it works in-game, but it gives me this giant error in the...
  12. PatoFrango

    Solved Spawn armor stand right in front of player

    Hi, How would I spawn an armor stand right in front of the player? Using "spawn armor stand in front of player" gives me this result but it's too far away for what I wanna do. Any ideas on how to shorten the distance?
  13. PatoFrango

    Web Information

    Hi, I’m looking for a feature in Skript that detects new things that have happened in a website. For example, I have a command on my server that gives you the link to the server’s blogspot. How can I check if there’s a new post on the blog and warn the player through Skript? Is it even...
  14. PatoFrango

    Solved Insert data in a website

    Hi, Is it possible using Skript to insert like, text in a user input box of an website?
  15. PatoFrango

    Solved Local variable error

    Hi, I'm not sure why this happened, but after updating to dev37b, one of my scripts, water.sk, started giving errors apparentely about the use of a specific local variable in a specific function event. Here's part of the code: And this is the error: Apparentely Skript thinks the variable...
  16. PatoFrango

    Issue with input

    Hi, I'm trying to remove all blue dyes from a player's inventory where their name either contains "Fire", "Water", or "Snow". I get no compiling errors, it just doesn't work on runtime. Code: remove all blue dyes where [name of input contains "Fire", "Water" or "Snow"] from {player1fire}
  17. PatoFrango

    Set name of inventory

    Hi, How would I change the name of a player's current inventory? Something like open inventory of clicked block to player set name of player's current inventory to "yo"
  18. PatoFrango

    Particles at relative direction

    Hi, How would I spawn particles, for example, at both right and left of the player?
  19. PatoFrango

    Solved Custom NBT on entities

    Hi, Is it possible to add custom NBT not just to items but also to entities? Not sure why, but metadata seems to be broken to me. Gives me an "internal error" message when the said line is executed.
  20. PatoFrango

    Solved Nearest entity to location

    Hi, I'm sorry if I'm overposting, but how can I detect the nearest entity to a location/entity? Is there like a "nearest" expression? I've done some research and I saw a few people using that, but it didn't work for me. If there isn't, what would be the best way of doing so? I've tried coding...