Block construction

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

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

JustADev

Well-Known Member
Apr 8, 2017
379
9
18
Q: How do I make stone brick stairs face different ways when I use block construction? I have tried:
* stone brick stairs:1
* 1 stone brick stairs
* stone brick stairs 1

here is my current code:
code_language.skript:
command /crate:
    trigger:
        make "M" with beacon at location (108, 117, 153) with effect true
        wait 1 second
        make "M" with stone brick stairs at location (107, 117, 153) with effect true
        wait 0.4 seconds
        make "M" with stone brick stairs at location (108, 117, 152) with effect true
        wait 0.5 seconds
        make "M" with stone brick stairs at location (109, 117, 153) with effect true
        wait 0.6 seconds
        make "M" with stone brick stairs at location (108, 117, 154) with effect true
        wait 0.8 seconds
        make "M" with ender chest at location (108, 119, 153) with effect true
 
idk, because i dont want to use /setblock to spam my server. Is there a better way?
 
It's in the docs. Search "block" and it's right there in the list.
 
Yes, ik, but how do i get it to turn the blocks different ways? The docs arent clear on that part
 
Because you do that by block ids. For example, log:5
 
Don't just say it doesn't work without providing anything...
 
code_language.skript:
command /crate:
    trigger:
        make "M" with beacon at location (108, 117, 153) with effect true
        wait 1 second
        make "M" with stone brick stairs at location (107, 117, 153) with effect true
        wait 0.4 seconds
        make "M" with stone brick stairs at location (108, 117, 152) with effect true
        wait 0.5 seconds
        make "M" with stone brick stairs at location (109, 117, 153) with effect true
        wait 0.6 seconds
        make "M" with stone brick stairs:1 at location (108, 117, 154) with effect true
        wait 0.8 seconds
        make "M" with ender chest at location (108, 119, 153) with effect true
 
Use set block from Skript. The one you are using are for pasting structures.
 
Status
Not open for further replies.