Recent content by Drioz

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

    Solved Sign shop with dynamic price not working

    No problem <3
  2. Drioz

    Help me with this Skript

    The best thing to do is to use a newer version server with a newer Skript version. Then use a plugin like ProtocolSupport or ViaBackwards to allow players to only join on 1.8.8.
  3. Drioz

    Solved Sign shop with dynamic price not working

    The arguments you are using are texts, you will have to parse them as numbers or change the arguments to <number>. command /test [<TEXT>] [<TEXT>]: trigger: set {_high} to arg 1 parsed as number set {_low} to arg 2 parsed as number set {_price} to random number...
  4. Drioz

    Help me with this Skript

    That is most likely caused by your outdated Skript version. Try upgrading to a newer version. I am currently using the latest version and it works fine for me :/
  5. Drioz

    Help me with this Skript

    And this? on damage: if projectile is a small fireball: damage victim by 200 Also, for 1.8.8, Skript Dev37c in Bensku's fork is recommended
  6. Drioz

    Solved Sign shop with dynamic price not working

    Instead of putting the value in a variable which contains the expression, just use a constant or temporary variable. set {_high} to 3rd line of event-block set {_low} to 4th line of event-block set {_amount} to 1st line of event-block set {_price} to random number between {_low} and {_high}...
  7. Drioz

    Help me with this Skript

    Try this: on damage: if projectile is a small fireball: make attacker damage victim by 200
  8. Drioz

    Help me with this Skript

    Hi there. What is your Skript version and server version?
  9. Drioz

    on inventory click help

    https://forums.skunity.com/threads/drag-and-drop-custom-enchantments-lore.4198/#post-14244
  10. Drioz

    Update GUI slot

    A possible solution would be to set a variable when the player opens the gui, then delete it once they close the gui. And then say while {temp.%player%} is set: set slot... wait 1 second
  11. Drioz

    All Full MundoSK Packets example

    The syntax is on packet event [packet type]: set {_a} to string field 0 of {_p}
  12. Drioz

    Grappling Hook

    Well when I tried to make it in the direction of the fishing hook it pushed the player in the opposite direction so that's the easy way xD
  13. Drioz

    All Full MundoSK Packets example

    Use https://forums.skunity.com/resources/thatpacketaddon.847/ And select ThatPacketAddon from these docs https://skripthub.net/docs/
  14. Drioz

    Grappling Hook

    on fishing: if "%fishing state%" is "IN_GROUND" or "REEL_IN": push player upwards at speed 2 push player forwards at speed 2 This is another way to make a grappling hook
  15. Drioz

    EnemyTab

    Are you making this for a custom minigame?