-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
35 lines (35 loc) · 775 Bytes
/
main.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
player.onDied(function () {
player.say("You dIeD n0oB!")
})
player.onTravelled(WALK, function () {
player.teleport(randpos(
pos(0, 0, 0),
pos(100000, 256, 100000)
))
})
loops.forever(function () {
gameplay.setWeather(THUNDER)
})
loops.forever(function () {
gameplay.timeSet(gameplay.time(NIGHT))
})
blocks.print(
"Kaizo Minecraft Beta By Cyberillc",
BEDROCK,
pos(0, 256, 0),
NORTH
)
player.say("Ha Ha Ha Ha Ha You Will Never Get Out Of Here!")
player.teleport(pos(0, 256, 0))
mobs.spawnParticle(VILLAGER_ANGRY, pos(0, 256, 0))
player.say("Good Luck!")
mobs.give(
mobs.target(LOCAL_PLAYER),
WATER,
1
)
gameplay.setDifficulty(HARD)
mobs.applyEffect(SLOWNESS, mobs.target(NEAREST_PLAYER), 999999, 2)
player.execute(
"/give @s minecraft.iron_sword"
)