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

    Solved How to ignore diacritics in a message?

    She can't just add if statements for every single diacritic ever, we'll need to remove them.
  2. Goose

    Solved offline player's prefix

    command example <offlineplayer>: trigger: broadcast "%arg-offlineplayer's prefix%" this should work though I haven't tested
  3. Goose

    Thanks to you too! Have a good day.

    Thanks to you too! Have a good day.
  4. Goose

    Send resource pack with skript-mirror

    I tried my hardest to understand what you want reading through this entire thread, and I understand that you don't want the file to be downloaded again if no changes have been made? If my understanding is correct, you could grab the file and hash it with SHA256 or MD5, and if the hash doesn't...
  5. Goose

    On consume Totem of Undying

    The use of a totem of undying doesn't trigger the on consume event because it is not a food item that you eat by right clicking. Instead, use the "on resurrect" event.
  6. Goose

    Nick Command

    this should go in the Requests section, not the Skript Help question Also please wait 24 hours before bumping, and if you didn't mean to bump, please just edit your original post instead of double posting.
  7. Goose

    Variable outside skript

    Assuming you mean take the value of one of Skript's variables and use it elsewhere, you could set up a db and have Skript save variables there.
  8. Goose

    <3 have a good day!

    <3 have a good day!
  9. Goose

    A rather odd bug this is, I just restarted my computer and it isn't occurring anymore...

    A rather odd bug this is, I just restarted my computer and it isn't occurring anymore? Everything seems fine now, did you fix it or was it just an issue with my browser?
  10. Goose

    Hey BaeFell, there is a weird bug with the site going on where if I scroll to the top of the...

    Hey BaeFell, there is a weird bug with the site going on where if I scroll to the top of the page, all the navbars are messed up. Are you aware of this bug already? https://ibb.co/4gf4VqH
  11. Goose

    Shop GUI

    You didn't have to post in the Skript Help category AND the Requests category, this should only belong in the Requests category.
  12. Goose

    Inserting text between two characters

    That would append the character to the end of the string, which he doesn't want. What he can do though is this: replace all (first 4 characters of {_variable}) in {_variable} with "%first 4 characters of {_variable}%%{character}%" Or you could make it slightly more readable and do this: set {_a}...
  13. Goose

    Solved Custom enchants

    on inventory click: if event-item is dirt: if player's cursor slot is stone: # do stuff
  14. Goose

    Inserting text between two characters

    He's trying to insert a character into a string, not turn a string into an integer rofl
  15. Goose

    ranksystem

    That's Tablisknu ;)
  16. Goose

    My %arg 1% comes back as <none>

    What's confusing me is that you listed that you have the addon "Skunity" when that's a website, not a skript addon. EDIT: Try removing the [] from the argument so it looks like <offline player>
  17. Goose

    Custom Ranks

    untested on chat: set chat format to "%player's prefix%%player%%player's suffix%: %message%" command rank <offlineplayer> <text>: permission: admin.rank permission message: &cInsufficient permissions! usage: &c/rank (player) (rank) trigger: if all groups contains...
  18. Goose

    Quit Reason Skript

    Yup, but it's not like anybody would bother to use the command, so I'm not seeing the point of a skript like this.
  19. Goose

    Quit Reason Skript

    There isn't any syntax that fetches a quit reason (probably because Minecraft doesn't provide a reason for disconnection), so this is most likely impossible.
  20. Goose

    How can I detect a player's EXP level?

    on level change: if player's level is 3: set player's max health to 6