Recent content by jjpwn1

  • 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. J

    Solved call function help

    I think he's trying to see if it's possible to create a command whose single purpose is to call a function using it's text parameter. I really don't know if this is possible, do you know if there's a way?
  2. J

    Disable Infinite Water Sources

    According to the Minecraft Wiki: Therefore, we would need to recreate those conditions and cancel event if necessary. Code used: on bucket empty: set {_conditions::1} to true if block below is solid else false set {_conditions::2} to true if block below is stationary water else...
  3. J

    Skript Things you probably didn't know were available in vanilla Skript

    From what add-on is the expanded inventory support from? I would LOVE to use a custom inventory with a different inventory type other than chest!!!
  4. J

    Skript JSON Text Guide for Newbies

    In Skript it is possible to create basic json texts that are the equivalence to Vanilla Minecraft's /tellraw command. However, the proper documentation surrounding them can be hard to find and at times lack critical information for new skripters. In addition, there are many unsolved and hidden...
  5. J

    how to edit sign ?

    请用编码的tag。因为你的编码很难看,所以咱们不行帮手你。谢谢。
  6. J

    Location spawn

    command /setcookiespawn: trigger: set {cookie.location} to player's location add 1 to y-coord of {cookie.location} #Prevents items from being glitched inside a block broadcast "Cookie location set at %{cookie.location}%" command /togglecookiespawn: trigger...
  7. J

    Anvil Questions!

    What you can do is compare the durabilities of the two items and the repaired item. If the end repaired item has less damage (or more uses) than either the first item or the second item, then we would know anvil fixing has occurred. Therefore, we would need to find a way to cancel that event...
  8. J

    Solved A player head on a fence

    An easy alternative is to simply use vanilla minecraft's basic fill command: /fill x1 y1 z1 x2 y2 z2 minecraft:skull 1 replace {SkullType:3, ExtraType:Notch}" Where the number "1" represents the orientation of the skull, and "ExtraType" representing the Skull Owner's name. The only thing left...
  9. J

    Solved Ticket support system

    The issue is that the way you structured your data does not match the parameters for your commands. You differentiated each ticket data by their player name, not by the ticket ID. Therefore, if you want to retrieve the ticket ID, you would need to reference the ticket player name first. A...
  10. J

    Putting Skript Releases on Spigot?

    Thanks for letting me know. I'll post an issue on his Github right away.
  11. J

    Putting Skript Releases on Spigot?

    Unfortunately, Aternos do not accept any copied versions that are not uploaded by the author. All plugins are manually reviewed, and so even some plugins that are on Spigot but deemed dangerous are not put in. Edit: See here.
  12. J

    Putting Skript Releases on Spigot?

    First of all I would like to apologize in advance if I had posted this request in the wrong section. I'm really new to Skript and skUnity in general and would like to implement it in my server. However, The server hosting that I use (Aternos) does not allow any plugins that are not officially...