Massassi Forums Logo

This is the static archive of the Massassi Forums. The forums are closed indefinitely. Thanks for all the memories!

You can also download Super Old Archived Message Boards from when Massassi first started.

"View" counts are as of the day the forums were archived, and will no longer increase.

ForumsCog Forum → Could someone make a cog for me?
Could someone make a cog for me?
2001-08-18, 6:26 AM #1
I need an item cog for MotS that lets you fly for a few seconds.

No this isn't for a hack, it's for my MotS mod.

------------------
Get a life.

Zone name = Evil_Lord_87
2001-08-18, 2:18 PM #2
To make someone fly for 3 seconds, use:

ClearPhysicsFlags(player, 0x1);
SetPhysicsFlags(player, 0x2000);
sleep(3.0);
SetPhysicsFlags(player, 0x1);
ClearPhysicsFlags(player, 0x2000);

just put that into the section you want to make you fly (e.g. activate: if activating the button should make you fly).
--
You are all just jealous because you can't hear the small voices!!

↑ Up to the top!