Recent content by SkriptLearner

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

    Clickable head gui

    Hey Expel_, Seeing as your code is very specific to other code which you haven't provided it's really hard to assist you! I hope we can help you.
  2. S

    how do i target specific player

    Hey 81dw, How you would do this, is you would add a player argument to your command, so let's do as follows: command /temspoo <offline player>: This will now allow you to do /tempspoo <player name>, an example is "/tempspoo 81dw." Now we add the trigger of course: command /temspoo <offline...
  3. S

    Solved Play sound for /msg /m /tell /essentials:msg

    Hey EvilSlayer, Your best bet at reliably doing this is to create your own message skript! Below I will include an example: command /msg <player> <text>: aliases: /message, /tell, /m usage: /msg <player> <message> trigger: send "&6[Me -> %arg 1%] &7%arg 2%" send...
  4. S

    Issue with teleporting in world

    Hey ibryce, The way you format your coordinates should be changed slightly, try this: teleport player to location(-85, 132, 329) in world "world" NOTE: I use the location function (https://skripthub.net/docs/?id=2120) to properly parse the coordinates as a location. I hope this helps!
  5. S

    Crop Hopper

    Hey Froaku, I reccomend you try something like: loop all items in radius 3 of loop-block: if loop-item is sugar cane: I hope this helps!
  6. S

    Clan Skript Not Working with No errors

    Are there 2 different acccounts in the clan or are they both you? Because if they are both you, they will over ride each other.
  7. S

    Solved help with nbt detecting skript

    Hey blorbee, Please format your code in code blocks. This helps people who would like to help you read your code and makes the overall proccess quicker and easier. The format looks like: Example You put your code in it by putting [ CODE] at the start and [ /CODE] at the end of your code...
  8. S

    Clan Skript Not Working with No errors

    Hey EpicLucas100, The reason this is not working is you are using {loop-value} and not loop-value. Loop-value is not a variable. Also you do not need to use a loop here. Instead use: if "%{clans::*}%" contains {_clanmake}: On top of all this, please do not include your entire code when it is...
  9. S

    How to place a skull with a command.

    Hey NqcoMC, Please format your code in code blocks. This helps people who would like to help you read your code and makes the overall proccess quicker and easier. The format looks like: Example You put your code in it by putting [ CODE] at the start and [ /CODE] at the end of your code...
  10. S

    Cant change specific lore line when I use a variable as number for lore line

    Hey Dractical, Please format your code in code blocks. This helps people who would like to help you read your code and makes the overall proccess quicker and easier. The format looks like: Example You put your code in it by putting [ CODE] at the start and [ /CODE] at the end of your code...
  11. S

    Canceling movement but not gravity

    Hey Famix, Here is how you would do this: on any movement: if {nomove.%player%} is set: set {_l} to player's location set {_l}'s x-coordinate to {-lastPos::%player%}'s x-coordinate set {_l}'s z-coordinate to {-lastPos::%player%}'s z-coordinate teleport player to {_l} set...
  12. S

    Fetch and check region from player in water?

    Hey mmaalex22112, Try using: on move on water: More information on this can be found at: http://en.njol.ch/projects/skript/doc/events/#move_on Also, you will not need any of the other if statements checking if they are in water once you use this. Just another note relating to your code...
  13. S

    Please help me :(

    Hey DevilZNK, In your code you have incorrect indentations. Everything you want to be triggered by the if statement needs to be moved along one indentation. You can find more information on indentations at https://forums.skunity.com/wiki/indentation/. Also, try changing the if statement to: if...
  14. S

    Solved On Inventory Click

    Hey SmallDev, Have you tried debugging your code? It may be that the names are different? Also, try: on inventory click: name of event-inventory is "Shop" cancel event send "hi" I hope this helps!
  15. S

    How to get enchant level using Tuske

    Hey flaxeneel2, You can get the level of a custom enchant of an item by using this: level of custom enchantment %custom enchantment% of %itemstack% I hope this helps!