Recent content by Nikox

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

    Check if item has name

    That's not the case. Gold is currency on my server. You can also put it to the bank, that's the code: set {_wplata} to arg 1 parsed as integer if {_wplata} is integer: if {_wplata} is greater than 0: if player has {_wplata} of gold...
  2. Nikox

    Check if item has name

    Hi! Can I check if item has name? I have recently found out that Skript doesn't remove named items. It can be very abusable, for example: command /gold: trigger: if player has 9 gold ingot: remove 9 gold ingot from player's inventory give player 1 gold block...
  3. Nikox

    Solved Give player arg 1 gold ingot

    Now it works, thank you!
  4. Nikox

    Solved Give player arg 1 gold ingot

    Hi, I wanted to do $ -> gold convertion in Skript, this is my code: command /withdraw [<number>]: trigger: if player's balance is less than arg 1: send "&eYou don't have enough money." stop else if player can hold arg 1 gold ingot: remove...