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

    Help with making a ritual of dropped items which makes them go into a circle.

    This would be a big project for me, but I would use Item DisplayEntities for this, and Item Display Transformation would be a good step to getting them to spin in a circle. I don't have much more input than this, so good luck!
  2. Merrical

    Strength Skript

    I recommend using a item saving skript, so you don't have those long lines that take forever to parse. command saveitem <name:text>: trigger: set {items::%{_name}%} to player's tool send "Set %{_name}% to your tool" to player then, you can do something like: if player's...
  3. Merrical

    Offering Skripts - lots of experience

    This is constantly Available! If you see this and want something, feel free whenever.
  4. Merrical

    Crafted item slot in the inventory?

    Debug
  5. Merrical

    Command not registering

    lmao
  6. Merrical

    How do I add indefinite scaling?

    I'm glad!
  7. Merrical

    How do I add indefinite scaling?

    So just to be clear, you just want an easy way to calculate {extra}? if so, this is what I'm thinking: function getExtra(lvl:integer) :: integer: set {_level} to round(({_lvl} / 100) + 0.5) set {extra} to random integer between 0 and {_level} return {extra}
  8. Merrical

    Solved Drop an item stored in a variable not working

    you have to drop 1 of the item, try adding '1 of' in between drop and the variable
  9. Merrical

    Solved Remove item lore/details in a gui

    No problem!
  10. Merrical

    Solved Remove item lore/details in a gui

    https://skripthub.net/docs/?id=7995 you do need skbee for this, but skbee should be a given for all skript users.
  11. Merrical

    How can i make on death of player by damage function give attacker 1 diamond?

    That's not my job. I'm here to help you understand what to do. Im not going to spoon-feed except to show you another method until you've shown you can it yourself
  12. Merrical

    How can i make on death of player by damage function give attacker 1 diamond?

    Check if their health is less or equal to 0 and if so give the attacker a diamond.
  13. Merrical

    Solved Remove item lore/details in a gui

    Not quite, the item is saved forever in a list. The item is saved as it is in your hand, so all you have to do is remove the item flags from it. If you don't know how to do that I can show you how to set flags for an item
  14. Merrical

    Offering Skripts - lots of experience

    I will sell skripts with good quotes I use venmo and paypal.
  15. Merrical

    Solved Remove item lore/details in a gui

    this is what I usually do: command saveitem <text>: trigger: set {items::%arg-1%} to player's tool #In your other code: set slot 14 of {_gui} to {items::MorphMenu} I'm rusty with skript so forgive me if it's not right
  16. Merrical

    I'm back baby

    I'm back baby
  17. Merrical

    Appearing and dissapearing particle trails in skript?

    You can use a function that has a while loop to make the timer
  18. Merrical

    How do I spawn a mob wearing a piece of armor with armor trims?

    Save an item to a variable and then set the armor piece of the spawned mob to that variable