11 lines
227 B
Plaintext
11 lines
227 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oWP = GetObjectByTag("wp_landing2");
|
||
|
object oFlyer = GetObjectByTag( "DRAGON_FLYER" );
|
||
|
|
||
|
|
||
|
AssignCommand( oFlyer, ClearAllActions());
|
||
|
AssignCommand( oFlyer, ActionJumpToObject( oWP ));
|
||
|
}
|
||
|
|