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

    I need help with a progression prevention plugin

    I think this will work
  2. M

    I need help with a progression prevention plugin

    I’ll make a basic script that you can modify to work for your server
  3. M

    Script AI Chat

    no no no no no, chat gpt is already gone too far. we dont need it in minecraft
  4. M

    Solved Item attributes

    here are the attributes https://skripthub.net/docs/?id=4280
  5. M

    Solved Item attributes

    use this to apply the attribute to the item apply [transient] attribute modifier to %itemtypes/livingentities%: attribute: # Required value slot: # Optional value id: # Required value amount: # Required value operation: # Required value and use this one to remove the...
  6. M

    Anvils

    So i have this older skript and its not working anymore and i did read the docs but i cant get it to work, can some one help? command /stareforge: trigger: open virtual anvil inventory named "&6Star Forge" to player on anvil prepare: if name of event-inventory is "&6Star...
  7. M

    Solved Item attributes

    I usually use skbee's attribute methods, so you can save the players current held item to a variable and modify the variable in the method
  8. M

    Solved Furnace Recipe Stuff

    i figured it out, if the smelting item is loop-item: set {_item} to the block's ore slot clear the block's ore slot drop {_item} at event-block
  9. M

    Solved Furnace Recipe Stuff

    So i'm working on a multi block script and i cant seem to figure out how to make it so only the multi block will take the item and no other furnace, any tips?
  10. M

    Sorting in skript

    oh, its because you're not changing the value of the list variable, it's staying the same. maybe try: set {_list1::*} to {_list1::*} in descending order based on {_list2::%input%}
  11. M

    Sorting in skript

    try sorting in descending order
  12. M

    Need help with sidebar skript!

    chief your code would be helpfull, but what is happening is that you're making an array and adding a value to said array which is displaying as multiple values. or something along the lines of that
  13. M

    SkEditor

    I tried it out finally! It looks great, keep up the good work. also, I can't wait until auto fill is released ;)
  14. M

    parser stuff

    Nice, how far have you gotten Rita?
  15. M

    New Skript parser

    Yes! that would be super helpful! make it as complicated as you want, but only use vanilla skript, so no add-ons
  16. M

    Offering SpionLennart's Skript Development

    hey hears something, make a skript that does nothing really but has every event, Event, Condition, Effect, Expression, Type, Section, Structure, and Function
  17. M

    how send title or execute any commands when player tp to other world?

    on world change: title "&aWelcome" with subtitle "&7Enjoy your stay!" to player for 10 ticks, 40 ticks, 10 ticks
  18. M

    NPCs

    well if you want to modify AI I don't know if there is a skript plugin. your best bet is to do this in java? but otherwise I have no idea how to do this. best of luck SpionLennart
  19. M

    particle skript help plz

    maybe this? on move: loop all players: set {_pitch} to pitch of loop-player set {_offsetY} to {_pitch} / -90 set {_location} to location of loop-player add 1 to y-coordinate of {_location} add {_offsetY} to y-coordinate of {_location} spawn 1...