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

    Addon SkCheese - Update 1.0.2

    Fixes a bug where you couldn't use strings in cases. You should REALLY update.
  2. erenkara

    Addon SkCheese

    no you cant, case only accepts literal values {_var} could be anything when the code is ran so its a non-literal literal examples: 5, "hello", string, 2.5 non-literal examples: {_var}, player's ping, 4 + {_var}
  3. erenkara

    Addon SkCheese

    You can add the addon tag if your resource is well, an addon for the download button you just upload the file to skunity rather than having an external download
  4. erenkara

    Addon SkCheese

    it doesn't exactly replace it, its just another way of doing conditions and it doesn't have to be an integer set {_var} to "ab" switch {_var}: case "ab": broadcast "its ab!!"
  5. erenkara

    Addon SkCheese

    switch is a keyword in a lot of languages that lets you run a block of code depending on the value its like using lots of else if after one another but unlike else if it skips to that block of code instantly rather than trying each condition they have other differences too though set {_var}...
  6. erenkara

    Addon SkCheese - Update 1.0.1

    Fixes an exception when you don't use the and store it in ... pattern. (Skript's fault)
  7. erenkara

    Addon SkCheese

    erenkara updated SkCheese with a new update entry: Bug Fix Read the rest of this update entry...
  8. erenkara

    Addon SkCheese

    hello, yes this is planned but no ETAs on when it will come out.
  9. erenkara

    Addon SkCheese

    erenkara submitted a new resource: SkCheese - The smelliest Skript addon. Read more about this resource...
  10. erenkara

    Addon SkCheese 1.8-beta

    SkCheese is a Skript addon which adds Skript related syntaxes that will likely not make it to official Skript. | Source Code | Syntax Wiki | Documentation | Support | This addon was made and tested in Skript 2.14. It may work on other versions but it is not guranteed. No support...
  11. erenkara

    Script PluginGuard [TAB Hider / Cheat Detection] - 2.1

    The config is now separate from the script. Updated to work with the new Hippo release. Now requires SkBee
  12. erenkara

    PluginGuard [TAB Hider / Cheat Detection]

    erenkara updated PluginGuard [TAB Hider / Cheat Detection] with a new update entry: 2.1 Read the rest of this update entry...
  13. erenkara

    Skript Gui, shift clicking?

    you are setting gui1 but cancelling gui...
  14. erenkara

    Skript Gui, shift clicking?

    dont test guis in creative mode
  15. erenkara

    Solved How would I go about fixing this so it works as intended?

    - store every gem in a list variable starting from 0 set {gem::0} to ... Pristine +5 - whenever they respawn, give them the next one on respawn: add 1 to {deaths::%player's uuid%} # you can use statistic expression from skbee if you are feeling fancy give player {gem::%{deaths::%player's...
  16. erenkara

    Health ActionBar

    %loop-player's health%
  17. erenkara

    console executing command wont work

    console commands dont use / and this is a bad way to do it, move everything in the command to a function instead
  18. erenkara

    Skript With Modded Items

    skript is not officially supported on modded servers
  19. erenkara

    i need help in skript

    nobody uses craftbukkit anymore, use paper
  20. erenkara

    Solved Skript Conditions Doesn't Work With Placeholders

    use player's balance instead. for future reference all placeholders are strings so you should be parsing them. your code will do nothing if their balance is 500 and you should be using skript-placeholders instead of Ersatz