18 lines
375 B
Text
18 lines
375 B
Text
|
#include "../common/header.ds"
|
||
|
output "p:/base/ds/tsr1"
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
local entity victim1 // the person who dodges from the alcove
|
||
|
local entity chaser1 // the guy who will wind up chasing him
|
||
|
|
||
|
|
||
|
|
||
|
victim1 = find entity with targetname "victim1"
|
||
|
chaser1 = find entity with targetname "chaser1"
|
||
|
|
||
|
|
||
|
|
||
|
use entity victim1 // spawns these guys in out of view
|
||
|
use entity chaser1
|