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 → Need a Cog... Can't do it myself...
Need a Cog... Can't do it myself...
2002-08-24, 3:49 PM #1
I think this is possible, can someone make me a cog that will create an object, and one tenth of a second later destroy it, and create a different one (in the same place), and keep doing this for a cycle of 20, and then start the cycle again? I'm trying to make an animation sort of thingy with 3dos.

If anyone could help me with this, it would be appreciated.

------------------
Wazzup??
Stuff
2002-08-24, 5:23 PM #2
THIS COGZ & I S3><0RZ EACH OTHER!!! HAHA!


Code:
# Simple 3d0 animation cog.
#
# 08/2002 GBK
Symbols
Message Startup
Message Pulse
Thing Ghost
Flex Delay=0.1
Template Frame0
Template Frame1
Template Frame2
Template Frame3
Template Frame4
Template Frame5
Template Frame6
Template Frame7
Template Frame8
Template Frame9
Template Frame10
Template Frame11
Template Frame12
Template Frame13
Template Frame14
Template Frame15
Template Frame16
Template Frame17
Template Frame18
Template Frame19
Thing Obj=-1		Local
Int I=0		Local
End
Code
Startup:
Sleep(0.5);
Setpulse(Delay);
Stop;
Pulse:
If(Obj != -1) Destroything(Obj);
If(I == 20) I = 0;
Obj = Creatething(Frame0, Ghost);
I=I+1;
Stop;
End



w00tage!!



------------------
I used to believe that we only want what we can't have. I was wrong. The truth is, the wonderful truth is, we only want what we think we can't have.

JK editing resources.
And when the moment is right, I'm gonna fly a kite.
2002-08-25, 12:54 AM #3
erm... good work, GBK. I'm glad you've finally found someone (or something).
Cordially,
Lord Tiberius Grismath
1473 for '1337' posts.
2002-08-25, 10:06 AM #4
Well. thanks, but I really didnt need to know how you have used this cog in the past...

------------------
Wazzup??
Stuff
2002-08-25, 10:54 AM #5
Methinks, more I was used. [http://forums.massassi.net/html/frown.gif]

------------------
I used to believe that we only want what we can't have. I was wrong. The truth is, the wonderful truth is, we only want what we think we can't have.

JK editing resources.
And when the moment is right, I'm gonna fly a kite.
2002-08-27, 12:19 PM #6
Well, it works, anyways. Actually it works too well. I made an animation of a huge wave (think Kamino), and i nearly got seasick from staring at it too long.

Expect to see a Kamino level for JK soon!

------------------
Aziz, light!
Stuff
2002-08-27, 1:25 PM #7
w00tage.

------------------
I used to believe that we only want what we can't have. I was wrong. The truth is, the wonderful truth is, we only want what we think we can't have.

JK editing resources.
And when the moment is right, I'm gonna fly a kite.
2002-08-27, 3:55 PM #8
Nice idea. The Kamino for Outcast just released at Mass. has a beautiful wave texture that looks great on a post card, but in play it just sits there...which makes it look rather stupid...

So, great idea.

↑ Up to the top!