How do you explain this?
I found this bubble cog, it works fine and all, but the bubbles go through walls! Here's the cog.
I found this bubble cog, it works fine and all, but the bubbles go through walls! Here's the cog.
Code:
# Jedi Knight Missions Cog Script # Makes sparks at a ghost for those busted lights # [AM] # (C) 1997 LucasArts Entertainment Co. All Rights Reserved symbols template Templatey=+sparks thing Ghosty flex minimumDelay=1.3 flex maximumDelay=5.0 sound soundy=ltsaberhit06.wav message startup message timer end code startup: SetTimer(minimumDelay + Rand() * (maximumDelay - minimumDelay)); Return; timer: PlaySoundThing(soundy, Ghosty, 1, -1, -1, 0); CreateThing(Templatey, Ghosty); SetTimer(minimumDelay + Rand() * (maximumDelay - minimumDelay)); Return; end
DO NOT WANT.