dkmud/world/batches/tutorial.ev

54 lines
881 B
Text
Raw Normal View History

2022-01-25 22:23:39 +01:00
# We start from limbo. Remember that every command in the batchfile
# -must- be separated by at least one comment-line.
@tel #2
#
zone/add tutorial_zone = 32
#
2022-01-25 23:31:04 +01:00
# ROOMS
2022-01-25 22:23:39 +01:00
spawn/noloc start_00
#
spawn/noloc start_01
#
spawn/noloc start_02
#
spawn/noloc start_03
#
spawn/noloc start_04
#
2022-01-25 23:31:04 +01:00
# EXITS
2022-01-25 22:23:39 +01:00
popen start_door_00 = start_00,start_01
#
popen start_door_01 = start_01,start_02
#
popen start_door_02 = start_01,start_03
#
popen start_door_03 = start_03,start_04
#
#add rooms to starting zone
addtozone start_00 = tutorial_zone, 16, 30
#
addtozone start_01 = tutorial_zone, 16, 29
#
addtozone start_02 = tutorial_zone, 15, 29
#
addtozone start_03 = tutorial_zone, 17, 29
#
addtozone start_04 = tutorial_zone, 18, 29
#
2022-01-25 23:31:04 +01:00
# ROOM START_00
2022-01-25 22:23:39 +01:00
tel start_00
#
spawn f_armored_skeleton
#
2022-01-25 23:31:04 +01:00
spawn wood_material
#
spawn cloth_material
#
# ROOM START_01
2022-01-25 22:23:39 +01:00
tel start_01
#
spawn f_rubble_01
2022-01-25 23:31:04 +01:00
#
tel start_00
2022-01-25 22:23:39 +01:00
#