\b;Von Houston übermittelte Programme
Unten befindet sich ein Programm das von unseren Ingenieuren entwickelt wurde.

Es instruiert den \l;Schutzschild\u object\botshld;, dem \l;Phazershooter\u object\botphaz; zu folgen und ihn zu schützen.
\c;
\s;extern void object::FollowPhazer()
\s;{
\s;	\l;object\u cbot\type;    item;          // Info über Phazershooter
\s;	\l;point\u cbot\type;     dest;          // Zielposition
\s;	\l;float\u cbot\type;     dist;          // Abstand zum Phazershooter
\s;	
\s;	item = \l;radar\u cbot\radar;(\l;PhazerShooter\u cbot\category;);
\s;	\l;if\u cbot\if; ( item == null )
\s;	{
\s;		\l;message\u cbot\message;("Keinen Phazershooter gefunden.");
\s;		\l;return\u cbot\return;;                  // stoppe das Programm
\s;	}
\s;	\l;shield\u cbot\shield;(1, 25);               // aktiviere den Schild
\s;	
\s;	\l;while\u cbot\while; ( true )               // endlos wiederholen
\s;	{
\s;		item = \l;radar\u cbot\radar;(PhazerShooter);// orte den PS
\s;		\l;if\u cbot\if; ( item == null )  break;
\s;		
\s;		dist = \l;distance\u cbot\dist;(item.position, position);
\s;		\l;if\u cbot\if; ( dist < 5 )
\s;		{                        // wenn näher als 5 m:
\s;			\l;wait\u cbot\wait;(1);             // warte
\s;		}
\s;		\l;else\u cbot\if;                     // ansonsten:
\s;		{ // Berechne eine Position 5m vor dem PS
\s;			dest.x = (item.position.x-position.x)*((dist-5)/dist)+position.x;
\s;			dest.y = (item.position.y-position.y)*((dist-5)/dist)+position.y;
\s;			dest.z = (item.position.z-position.z)*((dist-5)/dist)+position.z;
\s;			\l;goto\u cbot\goto;(dest, 0, 1, 1); // und gehe dort hin
\s;		}
\s;	}
\s;}
\n;
\b;Archiv
Index der Programme, die in vorhergehenden Missionen gesendet wurden:

o  \c;\l;ServiceTower1\u programs/8_ServiceTower1;\n;
o  \c;\l;CollectTitanium3\u programs/7_CollectTitanium3;\n;
o  \c;\l;KillAnt1\u programs/6_KillAnt1;\n;
o  \c;\l;CollectTitanium2\u programs/5_CollectTitanium2;\n;
o  \c;\l;CollectTitanium1\u programs/4_CollectTitanium1;\n;
o  \c;\l;Recharge2\u programs/3_Recharge2;\n;
o  \c;\l;Recharge1\u programs/2_Recharge1;\n;
o  \c;\l;SwitchCell1\u programs/1_SwitchCell1;\n;
