10 lines
413 B
Plaintext
10 lines
413 B
Plaintext
void main()
|
|
{
|
|
DestroyObject (GetNearestObjectByTag("Carriage"));
|
|
DelayCommand(0.5, DestroyObject (GetNearestObjectByTag("Coachman")));
|
|
DelayCommand(1.0, DestroyObject (GetNearestObjectByTag("Festril")));
|
|
DelayCommand(1.5, DestroyObject (GetNearestObjectByTag("Festril")));
|
|
DelayCommand(2.0, DestroyObject (GetNearestObjectByTag("Festril")));
|
|
DelayCommand(2.5, DestroyObject (GetNearestObjectByTag("Festril")));
|
|
}
|