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

    Can

    try this on mine of coal ore: if {ore} is true: cancel the event set {_exp} to a random integer from 0 and 2 if {_exp} is 0: send action bar "&a+0 exp" to player if {_exp} is 1: send action bar "&a+1 exp" to player give 1...
  2. krainser

    Hide player's nametag

    Disable and try the code novatosha gives you
  3. krainser

    Hide player's nametag

    Are you using and side-bar plugin or something that mess with scoreboard? I use this method for my Rust server in order to hide the players nametag like the actual game, but i had to remove it, my scoreboard was buggy
  4. krainser

    Can

    Please stay attached to the Help request format before posting. https://forums.skunity.com/wiki/help-request-layout/ Which errors do you have? skript version? addons?
  5. krainser

    Nothing

    Is this a call help or a request? for request go to https://forums.skunity.com/forums/requests/ and read the Script request format before you post
  6. krainser

    minigame name fail

    the right way to use a list variable (a variable that can hold more than 1 data) is using this format {event.players::*}. actually you are trying to put a lot of player's name inside one variable that can holdo only 1 name. i suggest you to read docs and watch video tutorials because this is the...
  7. krainser

    Help with variables

    are you trying to put multivariables inside a multivariable? no prob! use this {location::%player%::%location of event-block%} and this to count the amount of placed chest loop {location::%player%::*}: add 1 to {_amountOfChest} if {_amountOfChest} is more than 5: #do stuff
  8. krainser

    Solved If {variable} is not set: fail

    because "<none>" is not a string or text, is just a empty data outputed like a string, so you are comparing a string/text/whatever to nothing. the correct way to compare something that is not set is If {Kills::%player%} is not set": set {Kills::%player%} to "&cYOU DONT HAVE ANY"
  9. krainser

    Crackshot with iron door skript help

    first of all, is this a petition or a help request? send your code to be helped, post in petition to request a code
  10. krainser

    mining 3x3, 3x4 and 3x5

    Have you tried removin just one value of the Y-loc in the line 13? also, if this is for large server with bunch of people, you must replace the loop in line 3 with checking only 1 lore line, in order to avoid lag issues, xxoo!
  11. krainser

    Problem with a gun skript

    Try shoot arrow at speed 100 I leave you my gun skript, hope it helps you!
  12. krainser

    item entity XXXX has no item - Drop that shuldn't be dropped.

    Skript Version: 2.2-dev34 Skript Author: Bensku Minecraft Version: 1.10.2 Well, I want to make a custom drop ores skript for a mini game, buuuts randomly (more often in the redstone ore) drops a smooth stone that is never written in the skript code. That naughty stone seems dropping an error...
  13. krainser

    Solved Changing lores to temporal variable affects solid variable.

    No, it didnt, but i solved it changing the name of the tool on the second variable. extrange.
  14. krainser

    Solved Changing lores to temporal variable affects solid variable.

    T Yes! i tought that would work, but it didnt, i use {T.ItemLists::*} and {T.ItemListsMirror::*} instead
  15. krainser

    Solved Changing lores to temporal variable affects solid variable.

    Skript Version: 2.2-dev31c Skript Author: Bensku Minecraft Version: 1.10.2 --- Full Code: Errors on Reload: None Console Errors: None Addons using (including versions): Tuske, MundoSK Troubleshooting: I tryed to make another solid variable,changing its lores for the info, and nothings...
  16. krainser

    MundoSK Packets

    Hello! Nice addon! Im trying to solve a java bug on the 1.10.2, the problem is in the ride effect. When a player make a entity ride him it doesn't shown for the client. But for the others users shows. I read some forums and the problem can be solved in the packets that the server sends. But i...
  17. krainser

    Solved Make mob chase/target a player in particular

    Hi, im having some troubles trying to make a mob (a zombie pigman in this case) that would be spawned by Skript to chase a player in particular. I didn't found a Addon that could do this, SkStuff with [add pathfinder goal target nearest player to last spawned zombie pigman] doesn't fit me...
  18. krainser

    Solved How to define data to a projectile?. [Weapons skript]

    Skript Version: 2.2dev23 Skript Author: Bensku Minecraft Version: 1.10.2 --- Full Code: I saw this code in another help post. [ https://forums.skunity.com/threads/particle-trail.2646/#post-6204 ] I would like to define data to a proyectile (Name of the shooter and damage or a number) so, in a...
  19. krainser

    Can't make sheeps ride players.

    Skript Version: 2.2dev23 Skript Author: Bensku Minecraft Version: 1.10.2 --- Full Code: command /title <text>: trigger: kill the passengers of the player spawn a sheep at player's location make the spawned sheep ride the player set the displayname of the last...
  20. krainser

    Solved Can't close villager trade menu.

    Skript Version: 2.2-dev23 Skript Author: Bensku Minecraft Version: 1.10.2 ------ Full Code: on rightclick on a blacksmith: loop {BK.Puertos::*}: if the display name of the target entity is coloured "&f&lMENU - %loop-value%": close player's inventory #<- I think the...