SkStuff Schematic offset?

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

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

Jordan

Member
Jan 25, 2017
190
12
18
25
Scotland
Everytime i try paste a schematic with skstuff it will offset the schematic by a few blocks when pasting?

If i just do //paste the offsets will be fine and it'll paste correctly however if i use skript and try paste it with skstuff using
code_language.skript:
on place of furnace:
    if name of player's held item contains "[BluePrint]":
        if block below event-block is minecart rail:
            broadcast "Pasting"
            set event-block to air
            set {_SpaceBox::SchemData::%uuid of player%} to new edit session in player's world with limit 100
            paste schem "plugins/WorldEdit/schematics/NorthTemplate" at event-block using {_SpaceBox::SchemData::%uuid of player%} ignoring air
            broadcast "Done"

It'll offset the schematic so instead of pasting at event-block it'll paste like 2 blocks away and 1 block up from the event-block, i've also tried using location of event-block and i get the same problem, i also get this error in the console when pasting the schematic, not to sure what it means.

code_language.skript:
[17:08:25] [Server thread/INFO]: Attempted to place a tile entity (net.minecraft.server.v1_10_R1.TileEntityFurnace@162300a0) at -5,141,-19 (WOOL) where there was no entity tile!
[17:08:25] [Server thread/INFO]: Chunk coordinates: -16,-32
[17:08:25] [Server thread/WARN]: java.lang.Exception
[17:08:25] [Server thread/WARN]:     at net.minecraft.server.v1_10_R1.Chunk.a(Chunk.java:728)
[17:08:25] [Server thread/WARN]:     at net.minecraft.server.v1_10_R1.World.setTileEntity(World.java:2029)
[17:08:25] [Server thread/WARN]:     at net.minecraft.server.v1_10_R1.ItemStack.placeItem(ItemStack.java:197)
[17:08:25] [Server thread/WARN]:     at net.minecraft.server.v1_10_R1.PlayerInteractManager.a(PlayerInteractManager.java:538)
[17:08:25] [Server thread/WARN]:     at net.minecraft.server.v1_10_R1.PlayerConnection.a(PlayerConnection.java:910)
[17:08:25] [Server thread/WARN]:     at net.minecraft.server.v1_10_R1.PacketPlayInUseItem.a(PacketPlayInUseItem.java:37)
[17:08:25] [Server thread/WARN]:     at net.minecraft.server.v1_10_R1.PacketPlayInUseItem.a(PacketPlayInUseItem.java:1)
[17:08:25] [Server thread/WARN]:     at net.minecraft.server.v1_10_R1.PlayerConnectionUtils$1.run(SourceFile:13)
[17:08:25] [Server thread/WARN]:     at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
[17:08:25] [Server thread/WARN]:     at java.util.concurrent.FutureTask.run(Unknown Source)
[17:08:25] [Server thread/WARN]:     at net.minecraft.server.v1_10_R1.SystemUtils.a(SourceFile:45)
[17:08:25] [Server thread/WARN]:     at net.minecraft.server.v1_10_R1.MinecraftServer.D(MinecraftServer.java:732)
[17:08:25] [Server thread/WARN]:     at net.minecraft.server.v1_10_R1.DedicatedServer.D(DedicatedServer.java:400)
[17:08:25] [Server thread/WARN]:     at net.minecraft.server.v1_10_R1.MinecraftServer.C(MinecraftServer.java:668)
[17:08:25] [Server thread/WARN]:     at net.minecraft.server.v1_10_R1.MinecraftServer.run(MinecraftServer.java:567)
[17:08:25] [Server thread/WARN]:     at java.lang.Thread.run(Unknown Source)

Note: changing the on place of furnace to something like stone will get rid of the error in console.
 
Status
Not open for further replies.