Recent content by MrNygus

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

    Skript-reflect get recipes for Material

    Hello can you help me to get a recipes for Material?
  2. M

    ShopGui+ money save to variable

    Hello, 1.is it possible to save money to global variable when player buy item? 2.is it possible to stop buy when ex. variable: shopguititems.stone is 0? 3.is it possible to set price of item in skript? thanks <3
  3. M

    Solved How to give an item with custom id/attribute to the player

    I made 3 options, don't tested: command /gen: trigger: set {_item} to 1 wooden axe named "Name" with lore "Description" #1 and 2 give {_item} to player #3 set {_item2} to 1 wooden axe add "{custom:{owner:""%player%""}}" to nbt of {_item2} #need...
  4. M

    Help with a skript; canceling ender portal travel for a specific player.

    Try this, don't tested: on player portal: # or on portal enter if event-world is "world_end": #name of end world if player's name is "name of player": cancel event send "You can't do it :P" to player
  5. M

    GUI not "exiting"

    Please use pastebin or [.code] code [./code] without dot
  6. M

    need help fixing my skript

    Formated code: on right click with stick: if {mana.%player%} is above 6: if name of tool of player is "&c&lWand Of Escape": chance of 50%: apply speed 2 to player for 8 seconds apply jump boost 2 to player for 8 seconds...
  7. M

    Solved On death of wolf, message owner.

    Try this, don't tested: on rightclick holding a emerald: if name of event-item is "&eGrowling Egg": if {wolf.%player%} is true: send "&cWolf has already been summoned." if {wolf.%player%} is not set: set {wolf.%player%} to true spawn a...
  8. M

    Displaying skript placeholder in Featherboard

    Try in Featherboard use: %leprecoins%
  9. M

    NPC Yaw of body and head

    I want to rotate npc (full body). I have this code: set {_n} to last spawned npc loop 10 times: set yaw of {_l} to {_l}'s yaw + 10 despawn npc {_n} respawn npc {_n} at {_l} wait 1 second but rotating is only head refresh
  10. M

    Get all recipes by skript-reflect

    I want to log every recipes in minecraft, ex: creating_item (type of Recipe BlastingRecipe, CampfireRecipe, CookingRecipe...) = 1*item1 + 1*item2 + 2*item3 ex2: bread (crafting) = 3*wheat
  11. M

    Set player skin from url

    Category: Skin Suggested name: SkSkin Spigot/Skript Version: 1.17+ What I want: I want to skript (maybe using skript-reflect with plugin like SkinRestorer) to change player's skin from url Ideas for commands: /sskin <url>
  12. M

    Paint multipleblock

    Hello how can i paint multiple blocks on VoxelSniper? I use /b over all /v 2 but I want to paint using more blocks. Do you know worldedit alternative command too?
  13. M

    NPC's chestplate is elytra

    I want to check that npc have elytra on chestplate slot. This code do nothing. on right click on entity: if clicked entity's chestplate is elytra with name "Brown Elytra": send "True" else: send "False" refresh
  14. M

    skript-db insert error

    that's works: execute "INSERT INTO `konta` (`nick`, `password`) VALUES ('Sam', 'haselko')" in {sql} but this is not: set {_nick} to player's name execute "INSERT INTO `konta` (`nick`, `password`) VALUES ('%{_nick}%', 'haselko')" in {sql}
  15. M

    skript-db insert error

    I only test other options. Using '%smth%' show warn to not use it in this site. I hash password with sha-256 plus salt.