2025-02

告知

hottub

Hot TubCreate a hot tub with soul sand and waterplayer.onChat("hottub", function (num1) { blocks.fill( AIR, pos(0, -2, 0...
告知

spleef

TNT SpleefAn explosive variation of Spleef!player.onChat("spleef", function () { blocks.fill( BEDROCK, pos(0, 50, 0), po...
告知

lorenz

Lorenz AttractorCreate a mysterious shape in the skydef on_on_chat(): global x, y, z, p, ax, ay, az, pb x = 10 y = 0 z =...
告知

grid

Grid WorldSlice your world into a grid patternlet x = 0player.onChat("grid", function () { for (let index = 0; index <= ...
告知

wipeout

Wipe OutFlatten your worlddef on_on_chat(): blocks.fill(AIR, pos(-50, 0, -50), pos(50, 1, 50), FillOperation.DESTROY)pla...
告知

1000tnt

1000 TNTWhat do you get with 1000 TNT blocks?player.onChat("1000tnt", function () { blocks.fill( TNT, pos(1, 1, 1), pos(...
告知

pitfall

PitfallDig a pitdef on_on_chat(): for index in range(10): blocks.fill(AIR, pos(0, -5, 0), pos(0, -1, 0), FillOperation.R...
告知

POLO

Marco PoloFind your friends when they say Polodef on_on_chat(): builder.teleport_to(pos(0, 0, 0)) builder.mark() builder...
告知

arena

GladiatorMobs meet up in the arenaplayer.onChat("arena", function () { builder.teleportTo(player.position()) builder.mov...
告知

earthquake

EarthquakeSimulate an earthquakecenter: Position = Nonedef on_on_chat(): global center center = positions.add(player.pos...