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

    find value in variable

    I think I see what they are wanting. They're trying to find if the variable they have contains a certain bit of text. With the way they have things set up it will be possible, but it would be easier to use a list instead of a csv (comma-separated value) format. Here's something you can try: set...
  2. TobyMinceraft

    Solved Skript Conditions Doesn't Work With Placeholders

    The reason why placeholders aren't working the way you want them to is because  all PlaceholderAPI placeholders return as a text, not a integer or number. So where you need the placeholders to be numbers, you need to check the variable parsed as integer set {_var} to placeholder...
  3. TobyMinceraft

    Skript On Tab Completer

    Well that's why. You are checking for a command that is /gm <gamemode> What you should be doing is checking for the tab completer for JUST /gm Then you can check if tab arg-1 is "adventure" or something and go from there. Besides, it LITERALLY TELLS YOU WHAT TO CHECK FOR in the example provided...
  4. TobyMinceraft

    Help please

    still needs named
  5. TobyMinceraft

    Help please

    a shulker shell named "your name here"
  6. TobyMinceraft

    How to make a player run a command as op?

    I don't know what addon you are using for the GUI, but I will say Tuske is not great and has issues (similar story for SkQuery). Instead, I recommend a vanilla method such as this: on inventory click: if uncolored name of event-inventory is "Select Game": if display name of event-item is...
  7. TobyMinceraft

    Skript On Tab Completer

    One thing to note about this: Skript loads scripts in alphabetical order. For instance, Apple will load before Banana, and in this case the "command.sk" will load before "tabcomplete.sk" or "complete.sk". Unsure if this is a bug or intended behavior, but it's currently how Skript works...
  8. TobyMinceraft

    Script skWorth - v1.3 - Bug Fixes; New Features

    Haven't posted in a while...but that doesn't mean I haven't been working on it on and off, lately! Version 1.3 has rolled out, with some brand-new features that I have yet to post on my website (by the time you read this, it might already be done, but I cannot guarantee that) NOTE: for any of...
  9. TobyMinceraft

    Script skWorth - Bug fixes and slight re-code

    Code re-worked slightly, bringing these fixes: Added message if balance management is not player's balance but rather a skript variable Fixed bug where skript says it can't parse a particular message; message will still be displayed if you don't use skript-yaml but has no effect on the script...
  10. TobyMinceraft

    skWorth

    skWorth by TobyMinceraft NOTE Almost everything you see here is described more in-depth on my "wiki" located on my website: https://tmcmedia.risingdawn.fun/projects/skript-buy-command Description A simple script which gives server owners a customizable "/buy" command for players. This allows...
  11. TobyMinceraft

    Script skWorth - Config update (v1.1)

    Changes to code: Script no longer requires plugin skript-yaml While not required, it makes yaml-handling better by adding the yml file to the server's cache (automatically deleted on server shutdown) Added option to reflect this change Discovered better method to see "config" options...
  12. TobyMinceraft

    Script skWorth 1.3

    skWorth by TobyMinceraft NOTE Almost everything you see here is described more in-depth on my "wiki" located on my website: https://tmcmedia.risingdawn.fun/projects/skript-buy-command Description A simple script which gives server owners a customizable "/buy" command for players. This allows...
  13. TobyMinceraft

    Script Custom Crate

    To those looking for a working version of this resource, here's some things to note: Delete the text on line 28 (not the line itself, just the text) and replace it with this: make console execute command "minecraft:playsound block.note_block.hat master %{_p}% ~ ~ ~ 1" Delete the text on line...
  14. TobyMinceraft

    Addon Ersatz

    According to the devs of PlaceholderAPI (hereafter known as PAPI), the plugin needs updating. I am not using the latest version of PAPI, as I have not had the time to update it (though PAPI is not latest, it still gives this error). Here's the error it gives me: Ersatz is currently using a...
  15. TobyMinceraft

    Solved Change Item Base Damage

    Agreed. I came across this on accident, seeing how Skript treats things in "options" quite literally. So if I wanted to tell the player their playername for example and put it in the "options", it would just show as %player% (this is a actually a bad example, but I forgot what I was doing when I...
  16. TobyMinceraft

    Solved Change Item Base Damage

    Completely forgot about aliases. But even still, our points remain: you can still use NBT in vanilla Skript (many people say otherwise, or have trouble doing so)
  17. TobyMinceraft

    Solved Change Item Base Damage

    If you want to do this in straight vanilla Skript, you'd have to use a combination of a Skript command and a Vanilla Minecraft command (using a trick I recently discovered, it is possible to use NBT data in Skript without the help of addons - but only giving or setting data, not detecting it...
  18. TobyMinceraft

    Solved Need to know something before I make this Skript

    With what I was wanting to do, it actually doesn't matter the words with extra text, as the extra text would actually be more words. I do thank you for helping, though. Will be testing more soon.
  19. TobyMinceraft

    Solved Need to know something before I make this Skript

    I know how to check if a list contains the vaule. I just needed skript to send all matching results from said list.
  20. TobyMinceraft

    News New Parser Experiment - Collaborative Editing + WIP User Profiles

    Unsure if you've thought of this already, but I have a suggestion. If at all possible, have it so the parser can determine if what you're trying to accomplish will require an addon or just vanilla Skript. May take a bit to do, but it will be helpful (then, of course, the player should already...