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

    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
  4. 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
  5. 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>
  6. 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?
  7. 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
  8. M

    skript-db count of rows

    How can i check count of row of select? And how can i check count of element of list ( {list::*} ) i tried: execute "SELECT COUNT(*) FROM `konta` WHERE `nick` = %player's name%" in {sql} and store the result in {_resultat::*}v
  9. M

    skript-db insert error

    I have problem with insert data to mysql db. Select works but insert do nothing: execute "select * from konta" in {sql} and store the result in {_resultat::*} send {_resultat::nick::*} execute "insert into konta ( nick , password ) values ( testowy , dwa ) " in {sql}...
  10. M

    Spawn mob with selected texture from RP

    Hello, is it possible to spawn ex. creeper with selected texture from resourcepack? RP: https://www.planetminecraft.com/texture-pack/creepers-plus-optifine-required/ and is it possible to check type of texture of mob? (ex. by righclick)
  11. M

    Solved Transparent player

    Is it possible to do player transparent for the rest of players on 1.16.5+? Like this:
  12. M

    Bought but not downloadable

    I have purchased Ticket skript but the download function does not work. I hope I wrote in the appropriate section. Thank you
  13. M

    Solved Replace string in every command

    I want to replace text in every send command and execute new version. ex: /op @1 -> /op Nick on command: if {komenda.%event-commandsender%} is true: delete {komenda.%event-commandsender%} stop if {komenda.%event-commandsender%} is not set: cancel event set...
  14. M

    Change player skin from url

    Is it possible to change player skin from url image?
  15. M

    post request to url

    Hi can you give me example to run website with post data? I know it is possible in Reqn but I dont have examples.
  16. M

    Problem with ,,&"

    Hello I want to use ,,to text from"(url) but I have problem. Char ,,&" isn't work. set {_test} to text from "https://url.com/page.php?p=%player%&n1=first&o1=10" In PHP I get ,,Nick�n1=first�o1=10" by get only ,,p". Get ,,n1" is empty. What is wrong? That ,,�" is strange. I repair it, but can...
  17. M

    Solved Loop doesnt work

    I have skript: function graczeObok(p: player) :: boolean: loop all players in radius 50 around {_p}: set {vdate::%{_p}%::%loop-player%} to round(distance between loop-player and {_p}) delete {vdate::%{_p}%::%{_p}%} return true every 5 seconds: delete {vdate::*}...
  18. M

    NPC go to (not teleport)

    Is it possible to force npc(citizens) go to a location by skript?
  19. M

    Change nick on chat

    Hi, I can't change nick on chat. 1.16.5, Skript, skBee, Tablisknu, Skelett, skQuery... Tab and nametag works but not chat: set player's default nametag to colored "&4Test" set player's display name to colored "&4Test" set player's displayname to colored "&4Test" set tablist...
  20. M

    Solved Display all Materials skript-reflect

    How can I display all Materials name? import: java.util.Arrays org.bukkit.Material command /lista: executable by: console trigger: set {_nl} to Arrays.stream(Material.values()) send {_nl} to console