Fawesk

Addon Fawesk 2.5

  • 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!

LimeGlass

VIP
Supporter ++
Regular Diner
Addon Developer
Hey Lime.... I feel like this has probably been said 1,000,000 times, but incase it hasn't, could you possibly add support for schematics? (Copying/Pasting/etc) I have people often ask me about this, and it seems like theres no proper support in any addon for it.

Thanks for reading!
 
How do you change chunk biome instead of using cuboid region selections to change biome.
 
Does not work on 1.13.2?
At least it does nothing (no console errors, but also no changes) when I set blocks like this:

Code:
command /fips [<text>]:
    trigger:
        if arg-1 is "set1":
            set {testloc1} to player's location
            message "set1"
        if arg-1 is "set2":
            set {testloc2} to player's location
            message "set2"
        if arg-1 is "go":
            #set all the blocks from {testloc1} to {testloc2} to stone
            set all of the fawesk blocks within {testloc1} and {testloc2} to OBSIDIAN
 
LimeGlass updated Fawesk with a new update entry:

2.0

Recode of the addon to use full asynchronous setting and new FAWE API

Set and get blocks

Code:
(worldedit|fawe) blocks (within|from) %location% to %location% (where|that match) \\[<.+>\\]

(worldedit|fawe) blocks (within|from) %location% to %location%


# Examples

set fawe blocks from {test1} to {test2} where [block input is not air] to air

set fawe blocks from {test1} to {test2} to wheat[age=5]

loop fawe blocks within {test1} to {test2} where [block input is a diamond block or a grass...

Read the rest of this update entry...
 
LimeGlass updated Fawesk with a new update entry:

2.2

- Utilized the AsyncEffect so the section doesn't walk until the save/paste operation is done.
- Added chunk loading for collecting the entities, because in 1.20+ the new simulation distance results in WorldEdit not being able to copy the entities to the schematic unless the chunk is loaded. So FAWE will do that hard work for you.
- Added clipboard formats, so you can now define the clipboard format to use.

Read the rest of this update entry...
 
Would be cool if there was a way to load a schematic (with a rotation, position, etc.) into a local var list of blocks
 
LimeGlass updated Fawesk with a new update entry:

2.3

Added a syntax to loop the blocks of a schematic

Code:
[the] [:parallel] (worldedit|fawe) blocks of schematic[s] %strings% [using [clipboard] [format] %-clipboardformat/builtinclipboardformat%]


[the] [:parallel] (worldedit|fawe) blocks of schematic[s] %strings% (where|that match) [<.+>]

Read the rest of this update entry...