Recent content by Marsbar

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

    Solved Get player's chestplate

    Don't want to take up more of people who reply. I don't really care abt this anymore:P But thx for reply and gonna test it later:P
  2. Marsbar

    Solved Skript Reload Console Error.

    #!#! at ch.njol.skript.lang.SkriptParser.parse_i(SkriptParser.java:1115) #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:220) #!#! at ch.njol.skript.lang.SkriptParser.parse(SkriptParser.java:175) #!#! at ch.njol.skript.lang.SkriptParser.parseSingleExpr(SkriptParser.java:320)...
  3. Marsbar

    Solved Get player's chestplate

    Yea thanks for answer (sry for late reply) but I've tried that. Same thing.
  4. Marsbar

    Solved Get player's chestplate

    Yea i am aware of send "%type of player's chestplate%" But that fails. When I take of the chestplate, it still says I have a chestplate on. Any other way?
  5. Marsbar

    Skript broken / not working

    Oh, yea. I meant the specific skript version. Like skript 2.2 dev 36. It's because I've had errors with the wrong plugin. But my friend gave me another working skript 2.2 dev 36.
  6. Marsbar

    How to detect above of the player is air?

    if sunlight level at block above event-block > 5
  7. Marsbar

    Skript broken / not working

    If the code above (with skquery) doesn't work, then it might be your current skript version. What skript version do you have and what addons and their versions? It seems like a great skript. But I have few pieces of advice for you. 1. Split the skripts up in different files. Unless you're just...
  8. Marsbar

    How to set variable to blocks?

    add the location to a dictionary set {listofblocks::%location of loop-block%} to "lapis" on click on lapis ore: if {listofblocks::%location of event-block%} is "lapis" Your errors: You use local variables. Underscore marks a variable as local. Local means that the variable gets deleted...
  9. Marsbar

    SlowChat / Slow Chat

    Mark the post as solved
  10. Marsbar

    Need Help

    Found this post. https://forums.skunity.com/threads/player-name-above-head.3958/ Requires mundosk, protocollib 4.1+ and maybe placeholderapi. Set nametag of player to Further documentation can be found on skripthub I Will reply if u need more help Here are the docs
  11. Marsbar

    Solved "command" syntax does not work with a long command

    Ofc. Did you know you can do the same trick with % and # If you want either ",# or % in a string, it needs to be double.
  12. Marsbar

    Need Help

    Nbt. But that wont work properly
  13. Marsbar

    Need Help

    Idk, maybe with nametagedit
  14. Marsbar

    Need Help

    Explain yourself. If "%player's chestplate%" is "golden chestplate": You can hide a player from EVERYONE: hide player from all players reveal player to all players Do note that this removes the player from being visible at all. No armor showed, no tab list name showed, no anything. The...
  15. Marsbar

    Solved "command" syntax does not work with a long command

    Ofc ofc ;) Never seen the syntax Command before. Must be above 1.8 then. But of what I can see, its because of " It understands it as the end of the text. Replace every single " with two of " "" in skript means a single " INSIDE a text column. Little hard to understand, But here the...