Hi, I am new to map making and so I need to bother you with my nonsensical questions. I would like to ask if any of you know how to end a solo game. I have tried scripts to even end the game as soon as you enter it, but none work. I am currently trying game_won but to no avail. I would really appreciate help. (Yes, it is set up as solo (done in Guerilla)) (Yes, I click compile scripts and then save scenario) (No, no errors come up)
Thanks,
-Arightwizard
Examples of scripts I've tried that didn't work:
Quote:
(script startup endgame
(sleep 5)
(game_won)
)
Quote:
(script startup endgame
(game_won)
)
(endgame = script's name and a trigger volume's name)Quote:
(script startup endgame
(sleep_until (vehicle_test_seat_list drive_me "wdriver"
(players)))
(deactivate_team_nav_point_object "player" drive_me)
(game_won)
)
Quote:
(script startup endgame
(sleep_until (volume_test_objects endgame (players))15)
(game_won)
)