Posted by Earl on December 05, 1998 at 10:31:23:
In Reply to: There is a level that has that cog...Found it posted by Element_Greven on December 04, 1998 at 22:24:54:
: Well Warzone has one but it might not be MotS Compatible...
: ..so
: I dug thru the hidden MotS level (d:\gamedata\resource\unsuported.zip)
: and dug out this MOTS COG for following player..
: : message startup : thing R2 : int player : end : pulse: Thanks a lot. Now to tinker it a little
: # Jedi Knight Cog Script
: #
: # S6L1_R2.cog
: #
: # R2, faithful droid
: #
: #
: # [RK]
: #
: # (C) 1997 LucasArts Entertainment Co. All Rights Reserved
: # ========================================================================================
: symbols
: message pulse
: #=======================================================================
: code
: startup:
: SetPulse(1.0);
: return;
: player=GetLocalPlayerThing(); AiSetMode (r2, 0x2009);
: AISetMoveSpeed(r2, 1);
: AISetLookPos(r2, GetThingPos(player)); AISetMovePos(r2, GetThingPos(player));
: return;
:
: end