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

    Code cleanup

    command admin_setstructure [<text>] [<num>] [<num>] [<num>] [<num>] [<num>] [<num>]: permission: "*" trigger: set {_s} to structure named arg-1 set {_l1} to location(arg-2,arg-3,arg-4,"spawn") set {_l2} to location(arg-5,arg-6,arg-7,"spawn") fill structure...
  2. Vane

    Metadata/NBT

    Attempts: set {_tool} to shears set metadata value "Level" of {_tool} to 1 give arg-3 1 of {_tool} broadcast "%metadata value "Level" of {_tool}%" #<none> #set method: set {_tool} to shears set {_nbt} to nbt compound of {_tool} set tag "Level" of {_nbt} to 1 give arg-3 1 of {_tool} broadcast...
  3. Vane

    Carry variable to other variable

    I already have a few stuff set to myself on there, so yeah, it is set I guess. However for {profile::%{_p}'s uuid%::test3} for example, its not set.
  4. Vane

    Carry variable to other variable

    function checkFor_dataVariables(p: player): set {new_profile_variables::reputation} to 1 set {new_profile_variables::tokens} to 1 set {new_profile_variables::test3} to 2 loop {profile::%{_p}'s uuid%::*}: loop {new_profile_variables::*}: if...
  5. Vane

    Loops

    command /transactions: aliases: /history trigger: loop {data::%player's uuid%::transactions::*}: send {data::%player's uuid%::transactions::%loop-value%} I've tried all, no errors, inside the transaction list each value has an ID and inside of there is more info, I...
  6. Vane

    Shop Skript

    I need a shop skript, im on 1.14.2 Does anyone want to give me the functions of it. Also when removing the players money just make it eco take and when giving a player a item /give (essentials) I would appreciate any help
  7. Vane

    paying btw

    paying btw
  8. Vane

    Can you give me you're discord, I want you to make something for me.

    Can you give me you're discord, I want you to make something for me.
  9. Vane

    does your shop skript work on 1.14.2, and is it a skript?

    does your shop skript work on 1.14.2, and is it a skript?
  10. Vane

    Token Lore glitch

    if player has enough space for 1 magma cream: remove {_token} from {token::balance::%player%} give player 1 magma cream named "%{_token}%" with lore "&7This is a physical token. To claim it||&7simply &fright-click &7and claim...
  11. Vane

    Help with CTF skript

    Might of found a solution on damage: if damage cause is not void: cancel event if {CTF::PLAYERS::%attacker%::IN-GAME} is true: if {CTF::PLAYERS::%victim%::IN-GAME} is true: if {CTF::ARENAS::%{CTF::PLAYERS::%attacker%::ARENA}%::STATE} =...
  12. Vane

    Help with CTF skript

    Like this? on damage: if damage cause is not void: cancel event if {CTF::PLAYERS::%attacker%::IN-GAME} is true: if {CTF::PLAYERS::%victim%::IN-GAME} is true: if {CTF::ARENAS::%{CTF::PLAYERS::%attacker%::ARENA}%::STATE} = 1: if...
  13. Vane

    Help with CTF skript

    mind helping me, a friend wrote that for me and im new to skript
  14. Vane

    Help with CTF skript

    Hello there, I have ctf skript made, works fine however since I disabled event damage and when I fall into void or someone else falls into void it doesn't kill us. on damage: cancel event if {CTF::PLAYERS::%attacker%::IN-GAME} is true: if {CTF::PLAYERS::%victim%::IN-GAME} is...