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

    sonna otona syuusei site yaru !

    sonna otona syuusei site yaru !
  2. KrswtkhrSK

    Solved Doors

    The BlockID of the door is divided into Top and Bottom. In my environment it worked fine, but if you want to force it with the older (or problematic) version, there is a hand to rewrite the "alias file" aliases-english.sk oak(_| )door = 64 oak(_| )door(_| )top = 64:8-9 oak(_| )door(_| )bottom =...
  3. KrswtkhrSK

    Solved %player% variables question

    Thanks dude! When I encounter a bug in the future, I will think about expressing it in another way.
  4. KrswtkhrSK

    Solved %player% variables question

    I get the same error:emoji_thinking: skript uses latest bensku's fork (dev 36). Is this a bug?
  5. KrswtkhrSK

    Solved %player% variables question

    I'm making a script to return the contents of yaml command /yml: trigger: send "%YML(""stats.%%player%%"", ""joinedDate"", -1)%" Invalid brackets/variables/text in 'stats' (api\0_yaml.sk, line 25: send "%YML(""stats.%%player%%"", ""joinedDate"", -1)%"') What should I put in...
  6. KrswtkhrSK

    YAML Parse help

    I am writing a script to record location on yaml and teleport. But, an error has occurred ... load yaml "*my directory*" as "tptool" set {_tptool.location} to location of player set yaml value "coord" from "tptool" to "%{_tptool.location}%" save yaml "tptool" set {_tptool.tp} to yaml value...
  7. KrswtkhrSK

    On book close event?

    I want to do something when closing the book. Please tell me how to do. Or, if I want to use a feature not found in skript, is there any way to suggest it to addon developers? thanks.
  8. KrswtkhrSK

    Solved About "wait" ?

    Skript Version: Bensku's fork dev29 I want to wait the number of variables. Why is this an error? command /test: trigger: set {_time} to random number between 1 and 3 wait {_time} seconds message "test" [Server thread/ERROR]: Can't understand this condition/effect...
  9. KrswtkhrSK

    Solved Total List variables?

    I'd like to see the total of List Variables that is now. For example, if there are {test::1} to {test::5} variables loop {var} times: add 1 to {count} message "%{test::%{count}%}%" If I get even {var}, I can be able to read all the list variables I want to do it, but I dont know how to...
  10. KrswtkhrSK

    On click action

    "When left click is pressed three times at high speed" "Hold the mouse down for 5 seconds" How can you create actions like? I could not find a condition that matched it, so I will ask you a question.
  11. KrswtkhrSK

    Clear ALL variables to player

    For weight saving, I want to erase all the Variables of players who have not logged in for a month. Is there a way to erase all Variables associated with %player('s uuid)% ?
  12. KrswtkhrSK

    Solved Inventory area help

    When you open inventory, is there a way to judge whether it is a player's area or a chest area? For example, if there is a diamond in the chest (blue), click on it to make an event that happens. on mor.inventory click: if event-item is diamond: (code...) However, even if you click on...
  13. KrswtkhrSK

    Solved Convert text to numbers

    https://forums.skunity.com/threads/store-the-first-row-of-lore.4303/ Thank you so much for answering my questions! Sorry to bother you again. I could store diamond sword Lore safely, so I tried the calculation. Then, how can you convert the cut Lore to a number? I cut out the character code...
  14. KrswtkhrSK

    Solved Store the first row of "Lore"

    I want to store the first line of the item lore in the variable. on rightclick holding diamond sword: set {_lore} to line 1 of event-item's lore I tried writing code referring to Doc, but it does not work out very well:emoji_sweat: thanks.
  15. KrswtkhrSK

    Solved YAML items help

    I want to save items with NBT. I would like to save items thrown into the inventory like a chest. Please tell me how to record items in YAML, and how to call recorded items to inventory. thank you!
  16. KrswtkhrSK

    Remove Attribute...

    I want to delete Attribute from item. For example: set {_item} to unbreakable diamond sword named "Very Sharp Knife" with lore "&3sharpness....!" set durability of {_item} to 1 give {_item} to player I want to erase this diamond sword "attack power" and "attack speed" so that it becomes a...
  17. KrswtkhrSK

    Solved About grammar of skript addon

    How can I resolve grammar errors? I am trying to make a fake light source using Sharpsk and LightAPI. A similar problem had happened in the past though it should be written properly. Skript is running latest with 1.11.2. [(sharpsk|lightapi)] (create|make) [a] [fake] light [source] at [the]...
  18. KrswtkhrSK

    Solved Player Direction question..

    Can skript determine the direction of the player (or Entity)? I want to implement a script such as "to perform the next processing only when facing right". If possible, I think that I can give you an example sentence. Thanks.
  19. KrswtkhrSK

    Solved Func Question

    Loading the sample code written in skunity "function" caused an error. https://www.skunity.com/functions command /testfunction: trigger: access "testfunction" from "testing" broadcast "%{_test}%" function "testfunction": broadcast "lol" set transient "testoutput"...