Quote: --- Original message by: Toxic_Rhino
(script dormant ai_spawn_2
(begin
(sleep_until (volume_test_objects v1 (players)) 15)
(ai_place human_defend_1)
)
)
Dormant means it wont even attempt to start until another script (or dev) awakens it with the wake command. The begin is useless, and will slow your script by a whole 30th of a second. the 15 is useless, it is ment for picking timing for testing it, but ive never bothered since im fine with default settings.
(script startup ai_spawn_2
(sleep_until (volume_test_objects v1 (players)))
(ai_place human_defend_1)
)