Posted by Element_Greven on December 04, 1998 at 22:24:54:
In Reply to: There is a level that has that cog... posted by Element_Greven on December 04, 1998 at 21:34:36:
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:
# 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