Date: 2024/11/13 14:39:58 UTC-08:00
Type: Denizen Script
my_world_script:
type: world
events:
after plant grows naturally:
- define plantpos <context.location.format[fx, fy, fz]>
- announce 'a tree is grown at <[plantpos]>'
- run teleport_script
teleport_script:
type: task
script:
- define player <server.online_players.random.name>
- announce 'i have found <[player]>'
- wait 3
- narrate "<[player]> you were teleport in 5 sec"
- wait 5
- teleport <[player]> <[plantpos]>