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 comminuty!

    Now, what are you waiting for? Join the community now!

  1. BrownMee

    How to check items in player inventory? Please Help

    if name of clicked item is "&cAky's Book": cancel event loop all items in player's inventory: if name of loop-item-1 is "&a☘ &eLullaby Box": loop all items in player's inventory: if name of loop-item-2 is "&a☘ &eSoul Flame"...
  2. BrownMee

    Custom player head textures

    I been messing around trying to make a code for a player head with tomato texture place on the floor but coudn't do it. Please help set {_pname} to...
  3. BrownMee

    Solved Inventory click 1.13+

    Im using skript mirror to disable clicking event on certain inventory name on InventoryClickEvent: if event.getView().getTitle() contains " Survival Book": cancel event But it disable my on inv click event as well... On inventory click: if name of clicked item contains...
  4. BrownMee

    Solved checking above player has a block

    I'm not sure how to check for player is in house or outside a house.. please help bump
  5. BrownMee

    Fake snow particles?

    Im trying to make fake snow particles falls from sky. How do I do that? show 40 SPELL_WITCH particles at location of player for player offset by 0, 0 and 0 at speed 0 doesn't work... Any idea? bump
  6. BrownMee

    How to set variable to blocks?

    on break of stone: chance of 100%: loop all blocks in radius 3 around player: add 1 to {_x} set {_x} to random integer between 1 and {_x} loop all blocks in radius 3 around player: add 1 to {_y} {_x} is {_y} set...
  7. BrownMee

    How to detect above of the player is air?

    How do I test if above players is a block or is air?
  8. BrownMee

    Sprinting Stamina

    Any better code for this? on every 1 seconds: loop all players: loop-players is sprinting if {lvl.stamina.%loop-players%} is 0: subtract 1 from loop-player's hunger level if {lvl.stamina.%loop-players%} is 1: wait a sec subtract 1...
  9. BrownMee

    is there any code to disable recipe menu in inventory?

    I had tried packet but still have no idea how to do it. Aparently inventory click wont detect when you click the recipe menu. PLease help!
  10. BrownMee

    On click on this recipe book event?

    The green book. When i click it it execute a commands. How do I do that? https://imgur.com/a/Z08P2io bump
  11. BrownMee

    Checking all players inventories

    on every 2 seconds in "world": loop all players: if loop-players has permission "archer.use": if loop-player's inventory contains 64 arrow: stop else: give loop-players 2 arrows If player A have 64 arrows Player B wont able to...
  12. BrownMee

    Solved Detect max message alphabet in chat

    Trying to detect if player type in the chat have more than 10 words on chat: if "%message%" is more than 10: This apparently doesn't work. But I cant find the right code
  13. BrownMee

    Solved Remove Player Tag Name (above player)

    Is there anyway to completely remove the tag above player? like set player's tag to "&4" Please help!
  14. BrownMee

    Solved Please delete

    fixed please delete this thread
  15. BrownMee

    Detect item name but ignoring lore

    I'm using this code if items in player's inventory is 1 of leather with name "&7Pig Eyes x 1": if items in player's inventory is 16 of leather with name "&7Pig Eyes x 16": if items in player's inventory is 32 of leather with name "&7Pig Eyes x 32": It only works if i change "is" to "contains"...
  16. BrownMee

    Skript that crash player

    In the past 1.12.2 server I used 10000000 particles to player client side to crash them. But in 1.14.4 they have particles limits now. Anyone have any creative ideas?
  17. BrownMee

    On inventory open

    How to check if player's open their own inventory? on packet event play_client_client_command: if "ClientCommand" penum 0 of event-packet is equal to "OPEN_INVENTORY_ACHIEVEMENT": broadcast "s" using thatpacketaddon. No errors but doesn't work in 1.14 :(
  18. BrownMee

    Checking if break-block is previous block

    on break: if event-block is oak wood log: set {_block} to event-block's location if {_block} is equal to event-block's location: send "s" I want to check if the block i break is the same event block i previously break. pls help ! Anyone can give me a conclusion...
  19. BrownMee

    1.14 Particles Problems

    show 1000000000000 "flame" particles at arg's location for arg offset by 0.5, 0.5 and 0.5 got this error Could not parse particle value! BUMP
  20. BrownMee

    How to detect if you are standing flat lands?

    I'm not sure if skript able to do this. Using this code doesn't works loop blocks in radius 3 around player: since it loops the air as well. I just want to check if theres any cliff or mountain beside me. Triggers when you the ground is flat