Lots of updates

- Map-specific pre-match times
- Remove /load and change /start syntax to /start <map>
- Scripts for each map that are run at start time, barrier removal time, and end time
- New map forest-3
- A few minor bugfixes
This commit is contained in:
a-bad-dev 2025-12-23 22:49:31 -04:00
commit 2be8eea781
10 changed files with 87 additions and 27 deletions

View file

@ -8,7 +8,15 @@ local map_data = {
spawn_x = nil,
spawn_y = nil,
spawn_z = nil
spawn_z = nil,
start_time = 45,
scripts = {
on_start = "",
on_barrier_remove = "",
on_end = ""
}
}
return map_data