mirror of
https://github.com/a-bad-dev/simple-shooter-game.git
synced 2026-06-09 04:16:30 +00:00
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:
parent
acfeef6d01
commit
2be8eea781
10 changed files with 87 additions and 27 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue