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

    Solved Something weird occured

    is the event "On rightclick on entity:" working? on rightclick on entity: send "Debug" to player
  2. Merrical

    newbie protection gets removed because region has pvp allowed

    Thanks for context and depth in why it doesn't work.
  3. Merrical

    newbie protection gets removed because region has pvp allowed

    Ok first thing to do here is to change back your region to pvp allow. #Canceling damage if player has newbie protection on first join: #Giving player newbie protection through a variable set {newbie.%player%} to true #player keeps newbie protection for 15 minutes wait 15 minutes...
  4. Merrical

    Can't compare 'name of clicked item' with a text

    What he's saying is there is a way to format your code. if you press the 2nd 3 dotted symbol that says more options, you should see an options that that looks like this: </> this is how you format code. on right-click with orange dye: if player's tool's name is "&b2x &eBooster &f| &b5...
  5. Merrical

    Solved Drop item in a specific location

    I would recommend here that you use random integers for this. It allows you to find different values every time. set x coord {_drop} to random integer between -100 and 100 set z coord {_drop} to random integer betwen -100 and 100 set y coord {_drop} to 100 drop 1 stone at location {_drop}
  6. Merrical

    cant parse after many tries it shows none as output

    What are in those variables? if you are using skbee nbt methods to get them, make sure you use the syntax set int tag "really cool nbt" of nbt compound of {_item} If you don't know what is in the variables, try debugging by sending broadcast "%{_amountStr}%, %{_multiplier}"
  7. Merrical

    Problem with List Variable

    You have given no context to errors or exact issues of where the problem is occurring. Although you told us Where the code isn't working, We have no idea why. Have you even debugged? Also, since you are the one asking for help. you should be thankful that anyone is replying to your thread with...
  8. Merrical

    can place blocks but cant break them in regions worldguard

    if that really doesn't work then you can disable block placement for players not in creative. Would that be a way to solver your problem? on place: if player's gamemode is not creative: cancel event send "&cYou cannot place a block!"
  9. Merrical

    Solved Something weird occured

    Instead of using &6 for the color code, try using &a or &e. It doesn't look like gold. If you don't want to worry about color codes, you can write something like: if name of event-entity contains "Ability Merchant": #do code here
  10. Merrical

    Explosion Farming Enchant - Fix?

    Can I ask how you solved it so others can see what you did and use it?
  11. Merrical

    Being bored is boring. :/ I just realized this.

    Being bored is boring. :/ I just realized this.
  12. Merrical

    Solved Looping mined blocks then setting to specific block.

    No problem, loops can be confusing, especially if you have double lists.
  13. Merrical

    SkEditor

    This app is good, but I wouldn't prefer it over Sublime Text 3. It's missing a few small features that I need when skripting, such as being able to select multiple areas to edit at the same time, using ctrl [ or ] to move a highlighted text forward or backward, and probably others I can't think...
  14. Merrical

    can place blocks but cant break them in regions worldguard

    if you have world guard just do /rg flag __global__ block-place deny
  15. Merrical

    Problem with List Variable

    Bro if you want us to help you at least respect someone that actually knows how to use logic and syntax
  16. Merrical

    Automatically Replace Item NBT, name, and lore

    set player's tool to unbreakable player's tool
  17. Merrical

    Explosion Farming Enchant - Fix?

    I believe that ripe wheat plant isn't the correct syntax. on right click: loop all blocks in radius 3.5 of player: if loop-block is fully grown wheat plant: set loop-block to air draw 1 explosion at location of loop-block regrowwheat(location of...
  18. Merrical

    Solved Something weird occured

    does the npc have the same name?
  19. Merrical

    How do I make it so this code work and instead of speed it is power

    You cannot change the power when you shoot the fire ball. you could make an increase the explosion by using the event on explosion: and then create a new explosion with a larger blast. https://skripthub.net/docs/?id=1027 https://skripthub.net/docs/?id=1128
  20. Merrical

    Solved Looping mined blocks then setting to specific block.

    You are massively over complicating this skript. all you need to do is add the location of the broken block to a list, then loop that list that contains all the locations. with that you can then set the block at the "loop-value" to diamond ore. on break: if player's gamemode is survival...