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 → Can someone make me a cog?
Can someone make me a cog?
2001-11-05, 4:06 PM #1
I would like a cog that when you activate a 3do it would give the player full health and amke a noise when activated
2001-11-05, 5:14 PM #2
Ahh, bacta cogs. Gotta love em'.

 


# 11/2001 GBK
Symbols
Message Activated
Thing Healer
Thing Player Local
Sound Healsound
End
Code
Activated:
Player = Getlocalplayerthing();
If(Getsenderref() == Healer) {
Healthing(Player, 100);
Playsoundlocal(Healsound, 1.0, 0.0, 0x4); }
Stop;
End

 

It works, I tested it. [http://forums.massassi.net/html/biggrin.gif]

------------------
Success is the inverse relationship between effort, gain, and loss.

[This message has been edited by GBK (edited November 05, 2001).]
And when the moment is right, I'm gonna fly a kite.
2001-11-06, 5:25 PM #3
Thank You

↑ Up to the top!