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

    mysql blob item

    How can I store an item in a custom MySQL database? Using blob format in mysql data
  2. X

    Function can be asynchronous?

    function c(s:string) :: object: send {@c_console} to console set {_c::*} to {_s} split at "//" if {_c::1} is "mysql": set {_c1} to mysql result of query "SELECT %{_c::3}% FROM %{_c::2}% WHERE %{_c::4}%='%{_c::5}%'" if {_c::6} is "string": set {_c2::*} to...
  3. X

    remove enchant

    I have an item tool = diamond_sword of Sharpness 5, Curse of Binding 1, Fire Aspect 2 and Looting 3 There are some NBTs for this item Now I want to remove the bound curse What should I do? !remove Curse of Binding from enchants of tool This code is invalid
  4. X

    Error in startup

    I use Skript v2.2-dev31c server: Thermos 1.7.10-R0.1-SNAPSHOT | 1.7.10-1614.58 (MC: 1.7.10) These errors occurred at startup Although the plugin can still be used But I worry about the follow-up will be a problem I tried to disable the feature in 'features.sk' but I do not know how Hope to get...
  5. X

    death drops

    hello I want to do the following How do you do that item: stone withe lore "no drop" on death: loop drops: if loop-item is {@item}: #Don't drop the item
  6. X

    number of item

    set {_test::1} to 10 egg set {_test::2} to 20 egg named "test egg" loop {_test::*} give loop-value to player wait 1 ticks set {_t} to number of {_test::1} in player's inventory set {_tt} to number of {_test::2} in player's inventory send "%{_t}%" send "%{_tt}%" {_t} = 30 {_tt} = 20 This...
  7. X

    lavarun

    I want to do a similar Lavarun little game But how can I control the flows? Make the lava flow https://www.spigotmc.org/resources/lavarun-minigame-multiarena-bungeecord-99.26834/
  8. X

    parsed location

    set {_t} to "location(0.5, 96, 10.5, world(""world""), 179.9, -1.4)" set {_pd} to {_t} parsed as location How can I put the {_t} parsed into coordinates?
  9. X

    no consume item

    For example, I am a survival mode How can I send the infinite use a fireworks ?
  10. X

    yaml help

    server1: /home/lobby/test.yml server2:/home/pvp server3:/home/skywars I have 3 server server1 Have a yml file How can I read the yml file in server2 ?
  11. X

    elytra speed

    Equipped with a elytra, right-click the fireworks can be accelerated I want to by skript acceleration How to write? on rightclick with an sticks: #To speed up..
  12. X

    Observer backpack

    Want to ask is there any way to modify the observer pattern shortcut bar items I try to use if player's gamemode is spectator: set slot 1 of player's inventory to feather named "test" But this cannot be modified
  13. X

    edit mysql database name variables21

    Skript uses Mysql to store variables, Database name is 'variables21' Is there any way to modify the name?
  14. X

    Solid collision help

    on drop: cancel event spawn pig at player apply slowness 10 to last spawned entity for 1 hours Through the above code I created a pig that could not be moved However, when the player pushes the pig, the pig will move, I would like to ask if there is any way to make pigs can not be...
  15. X

    bossbar help

    An error occurred using the following code command /1: trigger: set {_bar} to new bossbar add player to bossbar {_bar} set the visibility of bossbar {_bar} to true visibility of bossbar {_bar} wait 2 seconds visible of bossbar {_bar} >sk...
  16. X

    display name help

    command /2: trigger: set the player's display name to "&c%player%" set tablist name of player to "&c%player%" I use the above code to test on the 1.11.2 server Found only changed player's tab name player's display name No change I would like to ask how to write in the...
  17. X

    cow ride player

    When an ox rides a player There is no way to detect this behavior And put the cow down?
  18. X

    Solved shoot break block

    on rightclick with an sticks: make the player shoot a snowball at speed 2 On projectile hit: set {_t} to block at the location at event-location if {_block} is purpur_block: set {_block} to air I try to make a snowball Destroy the specified box with a snowball But I found it...
  19. X

    walk or stoped help

    I want to be a TNTRUN on step on purpur block: #set block below player to air wait 3 ticks set event-block to air The above code to do mobile destruction But once the player stops, it can't continue I try to use the TuSKe event On Stop Walk: Invalid discovery event on player...
  20. X

    Solved Memory Help

    My test server did not use Essentials So you can't use the /gc command So how to use skript to view the current server memory status? Ask God for help:emoji_disappointed: