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

    I need help with particles

    SkBee yükledin mi? /sk info yazıp buraya sonucu at.
  2. The0Felon

    I need help with particles

    https://skripthub.net/docs/?id=10837 https://skripthub.net/docs/?id=10530 SKbee.
  3. The0Felon

    Adding a percentage of a group to another group?

    I haven't clearly understood you but i think you want something like that: loop {purple::*}: if {yellow::%loop-index%} isn't set: stop loop add {yellow::%loop-index%} * (80 / 100) to {purple::%loop-index%} Please explain your request clearly.
  4. The0Felon

    Skript Tools SkriptSense - Version 1.3.1

    Fix Update - Fixed Non-English Messages: Non-English messages have been corrected to display properly. - Fixed Undefined Variable in Effects: The undefined variable error for effects like "add 1 to {_i}" has been resolved.
  5. The0Felon

    Script Tools SkriptSense

    The0Felon updated SkriptSense with a new update entry: Version 1.3.1 Read the rest of this update entry...
  6. The0Felon

    Script Tools SkriptSense

    The0Felon updated SkriptSense with a new update entry: Version 1.3.0 Read the rest of this update entry...
  7. The0Felon

    Skript Tools SkriptSense - Version 1.3.0

    Version 1.3.0 - What's New? - Auto Indentation Option: A new setting to toggle auto indentation (true/false) has been added. - Frequently Used Event Syntaxes: Common event syntaxes are now available. - Indentation Warnings: Indentation warnings are provided along with quick-fix options. - Local...
  8. The0Felon

    Skript-Reflect x PlotSquaredAPI

    Did it work?
  9. The0Felon

    Skript-Reflect x PlotSquaredAPI

    Can you send me the class of it? Use this: send {_skriptList::1}.getClass() to players Place it after the while loop.
  10. The0Felon

    Skript-Reflect x PlotSquaredAPI

    It workedddd!!! You can use {_skriptList::*} as you wish. Your plots are stored in it.
  11. The0Felon

    Skript-Reflect x PlotSquaredAPI

    add this to your imports: java.util.Arrays Then copy paste: set {_list} to Arrays.asList({_Plot}.getConnectedPlots().toArray()) send "list object: %{_list}%" to players # delete this in future... send "list size: %{_list}.length%" to players #...
  12. The0Felon

    Skript-Reflect x PlotSquaredAPI

    set {_list} to {_Plot}.getConnectedPlots().toArray().asList() send "list object: %{_list}%" to players # delete this in future... send "list size: %{_list}.length%" to players # delete this in future... send "index 0: %{_list}[0]%" to players #...
  13. The0Felon

    Skript-Reflect x PlotSquaredAPI

    Now copy paste this: set {_list} to {_Plot}.getConnectedPlots().toArray() send "list object: %{_list}%" to players # delete this in future... send "list size: %{_list}.length%" to players # delete this in future... send "index 0...
  14. The0Felon

    Skript-Reflect x PlotSquaredAPI

    Now change this: send "index 0: %{_list}.get(0)%" to players # delete this in future... To this: send "index 0: %{_list}[0]%" to players # delete this in future... (we are gonna do it like 5-6 times...)
  15. The0Felon

    Skript-Reflect x PlotSquaredAPI

    Now change it to this: set {_list} to {_Plot}.getConnectedPlots().toArray()
  16. The0Felon

    Skript-Reflect x PlotSquaredAPI

    Try code i sent.
  17. The0Felon

    Skript-Reflect x PlotSquaredAPI

    And send your console. Yellow errors may be useful.
  18. The0Felon

    Skript-Reflect x PlotSquaredAPI

    change this: set {_list} to {_Plot}.getConnectedPlots().toArray().toList() # toList was missing. To this: set {_list} to {_Plot}.getConnectedPlots()
  19. The0Felon

    Skript-Reflect x PlotSquaredAPI

    function MoonMC_PlotAPI_RandxWand(p: player, mat: material, type: text): if {_p} is set: set {_Player} to {_p} set {_PlotAPI} to new PlotAPI() set {_PlotPlayer} to PlotPlayer.from({_Player}) set {_Plot} to {_PlotPlayer}.getCurrentPlot() set...
  20. The0Felon

    Skript-Reflect x PlotSquaredAPI

    Share the full code.