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

    Solved arg-1 in command

    yea i realized it after i reloaded the website haha :D
  2. HeliumBoi

    can someone make donutworth skript?

    Maybe? I dont think so. But I've never been on DonutSMP so I have no clue.
  3. HeliumBoi

    Discord: @temer_lang

    Discord: @temer_lang
  4. HeliumBoi

    Need help getting /give to work through execute console command

    Sure, im happy to help <3
  5. HeliumBoi

    can someone make donutworth skript?

    what does that mean?
  6. HeliumBoi

    im trying to make furniture store and heres script but theres bug in the line 35 37 and 39

    Your code actually didnt work and it kept saying "<none>" and it wouldnt let you buy the block. And it gave any block you looked at. So I fixed it :emoji_slight_smile: :emoji_warning: Constantly looping will cause lags within server:emoji_warning: command /satisakoy <number>: permission...
  7. HeliumBoi

    Solved slab type bottom sitmod

    This code took 2 hours to get right, and I can confidently say that it was the most painful script I've ever worked on. Server crashes: approximately 10 Syntax errors: approximately 250 (if not more) Installing SkBee is recommended btw Made by HeliumBoi
  8. HeliumBoi

    Need help getting /give to work through execute console command

    yea that wont work. Perhaps you can try this alternative?: command /specialcoin <player>: executable by: console trigger: set {_item} to gold nugget set {_item} to {_item} with item flag hide enchants enchant {_item} with unbreaking 1 give arg-1...
  9. HeliumBoi

    Solved List every block

    Sure, you can use: set {_random} to random element of all blocks I'm confident that you know how to use this ?
  10. HeliumBoi

    Solved how to make calculator in skript?

    The issue with your code lies in the use of echo, which is not part of Skript's native (vanilla) syntax. Additionally, you haven't specified any required addons that would support this functionality, making the script incompatible with a standard Skript installation.
  11. HeliumBoi

    Solved arg-1 in command

    That's not how this works. Don't simply apply my code to yours; your code has been enhanced by my input. You should use my code instead. It's working perfectly on my server.
  12. HeliumBoi

    Is the skript variable stable?

    When the server stops, any in-memory variables are lost. Use yaml instead :emoji_thumbsup:
  13. HeliumBoi

    Check for score?

    Typically, we use UUID-based or global variables for these purposes. Perhaps you could give them a try? https://forums.skunity.com/threads/skbee-easy-tutorial-for-scoreboards.15198/
  14. HeliumBoi

    Solved arg-1 in command

    So this is the best it gets from what you provided me with. Hope you like it! command /helper [<player>]: permission: hmenu.helper aliases: /h, /hmenu trigger: if arg-1 is set: set {_gui} to a new chest inventory with 3 rows named "&eʜᴇʟᴘᴇʀ ᴍᴇɴᴜ" set...
  15. HeliumBoi

    Solved arg-1 in command

    Well obviously you can't use arg-1 in "on inventory click" event. You need to use %player% instead. But problem i see is, you're trying to temporarily mute the player you clicked on (correct me if im wrong, im on mobile so i didnt really read everything), but if that's the case, you should loop...
  16. HeliumBoi

    how to set a variable to a slow falling arrow

    Can you show the part of the code where you tried to set it to a slow-falling arrow?
  17. HeliumBoi

    Solved how to make calculator in skript?

    Hey there! This code is used by three servers, one of which has 4,000 daily players. So far, my code has not caused any of the servers to crash, and it doesn't seem logical to assume it would. As you can see, everything is stored locally and then deleted; the code checks each item individually...
  18. HeliumBoi

    Craft result attributes

    There is a way to make it unbreakable. For example: set {_nuf} to unbreakable trident But I'm not sure if you can make the attack speed faster. Although there is idea of using NBT tags or SkBee atributes, i never really tried them.
  19. HeliumBoi

    Solved Extra Rocket Damage

    I'm having difficulty figuring out what you mean by specific. You mean a player with a specific username, or someone with permission? Regardless, there is what I could do: on damage: if attacker is a player: if damage cause is entity explosion: if attacker has permission...
  20. HeliumBoi

    GUI with all online players

    You can add this. if event-slot is between 0 and 44: set {_clickedName} to uncolored name of event-slot loop all players: if name of loop-player is {_clickedName}: #your code here