What do you mean like how it follows the observer that is done by a series of triggers like this
(all the trigger)
Code:
Trigger("Player 8"){
Conditions:
Always();
Actions:
Move Location("Player 8", "Protoss Observer", "Anywhere", "Observer");
}
//-----------------------------------------------------------------//
Trigger("Player 1"){
Conditions:
Switch("Switch1", set);
Actions:
Center View("Observer");
}
//-----------------------------------------------------------------//
Trigger("Player 1"){
Conditions:
Command("Player 1", "Zerg Zergling", Exactly, 1);
Actions:
Set Switch("Switch1", set);
}
//-----------------------------------------------------------------//
Trigger("Player 1"){
Conditions:
Deaths("Player 1", "Zerg Zergling", Exactly, 1);
Actions:
Set Switch("Switch1", clear);
}
//-----------------------------------------------------------------//