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

    Basic Minigame Mechanics in Skript Language:

    I never did a tutorial, so sorry for any errors I commit. You may know that Minecraft servers are full of different minigames, some mechanics in this games are repeated or useful to clear lag or stuff like that. Today I will show you here how to make some of these mechanics Hope this...
  2. Aidanete

    Skript General Skript Tutorial

    Yes, hmm. I don't understand how it works exactly, the rest of the variables I used and I understand well, however, that in especial is too hard for me. There is no exactly a misleading part but, I still not understanding very much the list variables. Thank you! E.g. - The ::* what means...
  3. Aidanete

    How to execute something on step on blocks

    I say that he may change the block stone to the block below the player in that coordinate. Sometimes I think I talk to the walls.
  4. Aidanete

    How to execute something on step on blocks

    If it works...: on walking on stone: player's y-coordinate is 0: player's z-coordinate is 0: player's x-coordinate is 0: message "Test" You may want to change the coordinate numbers and the block of the event must be the block below the player at that...
  5. Aidanete

    Skript General Skript Tutorial

    I'm still not entirely sure of how the list variables works, maybe someone can help me to understand it better?
  6. Aidanete

    How I give the player a custom head?

    I don't know how to do it... For example, a custom gui with a custom head with an arrow -> , for example, how I put the skull texture to that custom head. For example, this head: The page where I get this head: https://minecraft-heads.com/custom/heads/alphabet/9871-lime-arrow-right
  7. Aidanete

    Solved I want to create minigames with arenas but I don't find tutorials?

    Hello, I'm trying to do minigames with arenas but I don't know things like how to detect when the game starts and make events occur or stuff like that. Do you know about any in-depth good tutorial for understanding for this things?
  8. Aidanete

    Solved How can i add a permission

    For a permission for all subcommands in general: command /akro <[text]> <[text]> <[text]>: aliases: /a permission: (replace this with a permission node) description: [AkroCore] Info Commands trigger: And if you want a permisson for each one of the subcommands, use this condition...
  9. Aidanete

    Script Enhanced HP

    Aidanete submitted a new resource: Enhanced HP - Enhanced HP allows freely and easy to customize a visible HP bar/number for entities and players Read more about this resource...
  10. Aidanete

    Script Enhanced HP 1.0

    Enhanced HP is a very lightweighted script that allows you to customize freely a visible HP stat for your players and entities. Making posible to show the heart number, hp number, and percentage of HP. ❤️Features❤️ - Allows you to customize the health bar - Allows you to have different bars for...
  11. Aidanete

    Potion is not detected correctly

    Thank you, it worked fine!
  12. Aidanete

    Potion is not detected correctly

    Here is my code: player is holding a jump boost potion named "<light blue><bold>Extremely Sugared Water": cancel event message "<light red>Gotta go fast!" apply speed 5 to the player for 10 seconds play ENTITY_GENERIC_DRINK at the player with volume 1 and pitch 5...
  13. Aidanete

    Solved Prevent drop of item

    This is what I would do: on drop: event-item is a stone named "stone": line 1 of lore of event-item is "&6Spawned by &c%player%": cancel event For the inventory, as I'm still a little noob and I never did that, I think PatoFrango code for that will work well. [His post...
  14. Aidanete

    How to remove player's equipment

    Thank you, it worked fine :D
  15. Aidanete

    How do I disable jump for players of my selection

    I tried this: apply jump boost -1 to the player for 40 minutes But did not work Question: How do I disable the jump for players, there is no jump event so I can't cancel it. Please, help!
  16. Aidanete

    How to remove player's equipment

    How do I remove the player's equipment or at least the thing equiped in head: Code: remove all player's equipment equip player with argument 1 Please, help!
  17. Aidanete

    The command doesn't have a 2nd argument (join.sk, line 18: if arg 2 is mute"

    Try this: command /chat [<text>] [<text>]: permission: admin.use aliases: c, tchat trigger: Remember that "/chat" is not considered an argument, so the first [<text>] is the arg 1
  18. Aidanete

    Feed effect don't work

    I know, thank you
  19. Aidanete

    Drop ingot instead of ore, I don't know how to do it

    The skript don't understand the condition/effect of "Set the block at event-block location to air" The skript don't understand "event-block" because is not a direction. Ok, I find the solution myself. The error was that skript can't understand "event-block location", the fix is changing it with...
  20. Aidanete

    Drop ingot instead of ore, I don't know how to do it

    I tried this also, but the "clear drops" effect only works with death events... on break of gold ore: player is in world "Skywars": clear drops drop gold ingot at location of event-block on break of iron ore: player is in world "Skywars": clear drops drop...