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

    luckperms prefix in scoreboard

    so. uh. i have placeholder api, skript-placeholders, skript and skbee all fully updated i have installed the luckperms extention thing with placeholder api code: on join: if {kills::%player's uuid%} is not set: set {kills::%player's uuid%} to 0 if {deaths::%player's uuid%} is...
  2. completeidiot

    k so this is probably really obvious but i just cant figure it out. (skript-gui syntax)

    so i checked the skript-gui documentation, and i cannot understand it at all so thats nice tell me if you need the full code but this is probably the only required one i think (?) the issue is that when i put "if clicked slot is <whatever number> it includes the inventory slots and not just the...
  3. completeidiot

    scoreboard issue

    i was making a thing for a friend and found some errors, not sure whats wrong with the code code: on join: if {kills::%player's uuid%} is not set: set {kills::%player's uuid%} to 0 if {deaths::%player's uuid%} is not set: set {deaths::%player's uuid%} to 0 if...
  4. completeidiot

    i dont even know

    so im trying to make a damage reduction script, heres the code: on join: if {res::%player's uuid%} is not set: set {res::%player's uuid%} to 0 on damage: if {res::%victim's uuid%} is greater than 0: reduce damage by {res::%victim's uuid%} command setres [<player>] <integer>...
  5. completeidiot

    hide all flags of an item

    those are my plugins they are fully updated dont mind the skript name i just did random characters also it worked perfectly fine until i added the "with all flags hidden" part of it and im trying to remove the attributes, enchants, and everything but the name and lore of the item.
  6. completeidiot

    (SOLVED) clearing all blocks a player placed on death

    so i just need a skript that can set all of the green concrete a player placed to light gray stained glass on death not everyone's concrete, just the person who died's placed concrete you do not need the full skript as there is no errors and i just need a skript that can make all the green...
  7. completeidiot

    (SOLVED) so uhh help.

    so ive been wanting to make a server with generators and ive been trying to make it so on player death: it removes all of the green concrete the player placed. on join: set join message to "&7[&a+&7] &8%player%" execute console command "/kill %player%" set {genprice::%player's...
  8. completeidiot

    how the fu- (yea i solved it without help so uhhh)

    so ive been making a shop in skript, with the price increasing every time you buy something, but it always shows <none> in the price. i checked to see if it worked with a command and it did but not on the item lore NOTE: its the lore on the item (the text under the name) that shows <none> where...
  9. completeidiot

    this doesnt make sense (SOLVED)

    so im trying to make a generator thing but it doesnt work. theres no errors and it doesnt work. on load: set {moneygeneration} to sunflower of mending named "&fMoney Generation" with lore "&8Welcome %player%!" set {gen} to green concrete named "&2Money Gen" with lore "&eCosts 15...
  10. completeidiot

    how do i make this work (SOLVED)

    so ive been making a generator and all of it works except one part: on pickup of paper: remove 1 of paper from player's inventory increase {money::%player's uuid%} by 1 how do i make it so it removes all and adds by the amount it removed (ik how to remove all but not how to make it...