Posted by Gary on November 08, 1998 at 20:40:13:
In Reply to: Particle stream posted by Jkior on November 08, 1998 at 17:31:00:
: How do you do a particle stream like in Valley of the Jedi Core?
:
: -Jkior
The cog that controls the particle stream in that level also controls the two statues that move toward the center of the room, you just want to use the particle part of that cog, here it is:
# Jedi Knight Missions Cog Script
#
# S4L3 Create particle system cog for waterfall.
#
#
# [TT]
#
# (C) 1997 LucasArts Entertainment Co. All Rights Reserved
symbols
message startup
message pulse
template spray=+dustcloud local
thing ghost0
thing ghost1
thing ghost2
thing ghost3
end
code
startup:
setpulse(0.25);
return;
pulse:
CreateThing(spray, ghost0);
CreateThing(spray, ghost1);
CreateThing(spray, ghost2);
CreateThing(spray, ghost3);
return;
end
You have to place a ghost object where you want the particle to appear, then make sure the cog is in your project folder,
Good Luck
Gary