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

    Solved Can anyone try to help plz

    The best way to do this is make an event for anything that has to do with a change in the player's inventory. Here are some examples: on pickup: if event-item is a pickaxe: set {_tag} to tag "value" of nbt of event-item if {_tag} is not set: add "{value:1}" to...
  2. AsuDev

    Solved Get the attacker of a tnt

    I do not know if this will work, but you can try: remove 1 of tnt from player's inventory spawn 1 primed TNT at location of {_block.loc} set metadata value "attacker" of last spawned primed tnt to "%player%" set fuse time of last spawned primed tnt to 60 #something along these lines on...
  3. AsuDev

    Disable custom amor protection.

    its basically a unique ID for each item. If more than one item have the same ID then the item won't work (or at least I think that's how it works. I did testing and each item needed a unique ID...)
  4. AsuDev

    Format a player inventory?

    on join: set slot 5 of player's inventory to 1 of compass named "server selector" on right click holding compass: if name of player's held item is "server selector": #do stuff on inventory click: name of clicked item is "server selector" cancel event
  5. AsuDev

    loop-number problem in inventory item command variable

    Skquery gui formatting sucks. You should consider using TuSKe or normal SK for that. I have experimented with this before and it never updates the command. It keeps the same one for all of them. I have never used TuSKe before so I am going to show you can example of how you can do it with...
  6. AsuDev

    Disable custom amor protection.

    Are you trying to remove the vanilla armor protection from armor? If so, you can change the armor protection value in the item. You need SkStuff for this: #Make sure to change the UUIDMOST and UUIDLEAST for every item you make! options: gorronox : iron helmet with nbt...
  7. AsuDev

    Item Names

    Put the ID of the item and you will get a skript warning telling you what to use instead (at least that works for me). Optionally, you can skim through your skript aliases file and find the names. Raw Mutton ID = 423 Raw Rabbit ID = 411 Raw Fish ID = 349 In my 1.12.2 spigot and dev34 of beksu...
  8. AsuDev

    Solved Bungeecord currency

    Do you have a database up and running? Pm me and I will take you through the process of setting everything up, including making the currency. If you need help with setting up a database, I can help you with that too... Discord: Hyp3r_Lynx#0714
  9. AsuDev

    Offering SUMMER SALE⚡$1/GB⚡Owned Hardware⚡Xeon E5-1650v4⚡NVMe SSDs⚡DDR4⚡DDoS Prot⚡TX,EU,AS&AU⚡Fast Support

    Looks good! You will definitely have me as a customer soon when I get my network up and going XD
  10. AsuDev

    what is better? [GUI]

    "format slot" is skquery and is broken. "set slot" is normal SK. TuSKe is along the lines of "format gui slot #"
  11. AsuDev

    Bored beyond belief.

    Bored beyond belief.
  12. AsuDev

    what is better? [GUI]

    TuSKe would definitely take up a lot less space than normal Skript, but I prefer normal skript with the skellet syntaxes. There are so many options with it and I prefer it over TuSKe.
  13. AsuDev

    How to get the attacker?

    You can use metadata to do that. You can set a metadata value to the fireball (you can set whoever shot it) and then check the metadata of the projectile to get the shooter in the damage event.
  14. AsuDev

    Rev's Free Sk's

    Willing to work for free for any server or network. I've been using and learning SK for the past 3 years and have become skilled at it. Like the title of my post, I'm willing to work for free but under certain conditions: 1. Spigot server jar must be 1.12+ 2. Using bensku fork of SK (dev32 -...
  15. AsuDev

    Formatter

    This is mine if you need any help: TeamSoloDev#0714
  16. AsuDev

    Formatter

    I will look into it and let you know if I come up with anything.
  17. AsuDev

    Formatter

    You can use regex to split a number with commas (returns string). function commas(value: text) :: text: return regex replace "(?<=\d)(?=(\d\d\d)+(?!\d))" with "," in {_value} command /test <number>: trigger: set {_value} to commas("%arg 1%") broadcast "%{_value}%"...
  18. AsuDev

    Skript Bungeecord

    Not that I know of...
  19. AsuDev

    Skript Bungeecord

    I don't get why it is not working then. I remember in skelletproxy it had an "Events" config option for GlobalScripts. There is a config option for it in skungee config but i don't think it works nor does it pertain to GlobalScripts (or at least I think).
  20. AsuDev

    Skript Bungeecord

    Is your skungee config (spigot) host set to "127.0.0.1" and the port "1337"? Also is the port on skungee config (bungee) port set to "1337"