Posted by JEDI-HUNTER on May 24, 1998 at 02:09:35:
In Reply to: I'm SOOO Happy! 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 Co: symbols
: surface switch0
: flex G
: message activated
: end: # ========================================================================================
: code
: # ........................................................................................
: activated:
: SetGravity(G);
: return;
: end