PDA

View Full Version : Force Lightning


YourOwners
06-09-2004, 10:24 PM
I need a cog that has a ghost posistion that can direct the template force lightning to in the level and when you enter have it stay on just continuously spraying lightning wherever the ghost is pointed. TY!

------------------
Your Owners Clan Leaader,
_yo_wasup_

Lord_Grismath
06-10-2004, 09:37 AM
symbols
message entered
message pulse
sector gohere
template lightning
thing lightpos
end
code
entered:
if(GetSenderRef()==gohere) SetPulse(0.5);
return;
pulse:
CreateThing(lightning, lightpos);
return;
end

I think that's what you're looking for.