Posted by JED Master on May 23, 1998 at 14:08:23:
Why? Because I fianly wrote a COG that works! Just paste the following into a txt file, save as TJC_CG.COG insert it and have fun! 1 is a nice not get hurt when you fall amount, 4 is the defualt. use one to change it, and another to change it back!
# Jedi Knight Cog Script
#
# TJC_CG.COG
#
# Changes Gravity to G upon activation of switch0
#
# This Cog is Not supported by LucasArts Entertainment Cosymbols
surface switch0
flex G
message activated
end# ========================================================================================
code
# ........................................................................................
activated:
SetGravity(G);
return;
end