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

    Cant compare a location with a text

    yeah.. because a location isn't a string. And are you sure you want to use every 1 tick with loop all players?
  2. Minecoll_YT

    Remove item with specific lore

    Please search the forum before asking a question
  3. Minecoll_YT

    Solved Item Rename!?!

    options: blacklist: air, bedrock command /item [<text>]: trigger: while {_found} is not true: set {_item} to a random item out of all items # blacklist if {_item} is not {@blacklist}: set {_found} to true...
  4. Minecoll_YT

    Solved Message contains "@%player%":

    Yeah... Because you are the %player%. You have to loop all players and then compare. And why are you using a mc command to play sounds?
  5. Minecoll_YT

    Solved Different Decimal Place for Different calculations

    This is confusing as hell. You can cut off the decimal, round up/down or use integers instead of numbers
  6. Minecoll_YT

    can someone do this?

    It's just setting metadata
  7. Minecoll_YT

    Solved Help with enchants

    Please format your code... I can't read anything
  8. Minecoll_YT

    Discord: Jonas L. | Minecoll_YT#0741

    Discord: Jonas L. | Minecoll_YT#0741
  9. Minecoll_YT

    Skript Cooldown

    please debug the victims health, e.g. on damage of a player: send "1" if damage cause is lava: send "2" if victim's health is less than 5: send "3"
  10. Minecoll_YT

    Solved help with command

    In which event did you put that, send your whole code
  11. Minecoll_YT

    Skript Cooldown

    Great explanation, but please don't use cooldown like that. 1. Periodical events aren't good for performance (every ...) 2. A player could have two-second chances within 3 seconds because of the way this is build 3. It's unusual to use spaces in variable names 4. There is no need for the {_h}...
  12. Minecoll_YT

    Skript Cooldown

    This code is... not well-made. You should consider reading the basics on how and when to use local variables. on join: set {lastchance::%player%} to now remove 5 minutes from {lastchance::%player%} on damage of a player: if damage cause is lava: if victim's health is less...
  13. Minecoll_YT

    Solved help with command

    function codeGen(len: integer):: text: set {_options::*} to 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y and Z loop {_len} times: set {_code}...
  14. Minecoll_YT

    Solved Enchant help

    I believe it was... - if not, try "with" instead of "of" pickaxe of xxx
  15. Minecoll_YT

    Solved Leather cap removes effect poison

    It's SharpSK, I thought it was vanilla skript but turns out it wasn't
  16. Minecoll_YT

    How do I check if a block..

    And you are holding a block? And please use list variables and don't make such a mess with if-Statements
  17. Minecoll_YT

    Solved Leather cap removes effect poison

    on armor equip: if event-item is a leather helmet: remove poison from player on armor unequip: if event-item is a leather helmet: apply potion of poison of tier 1 to player for 999 years
  18. Minecoll_YT

    On Place - Help needed please

    An event-block doesn't have a name. And use list variables, currently you're just using a mixture out of both.