Author Topic: Explosion: Continuous shockwave  (Read 1383 times)


From what I see in your original code, you say
Code: [Select]
if(!%times == 8)From what I can tell, you meant $times, not %times.

Also, I would say
Code: [Select]
if($times != 8)rather than
Code: [Select]
if(!$times == 8)I'm not sure how much of a difference that would make, if any, but it's easier to read and understand.

EDIT:  Also, instead of saying
Code: [Select]
$times = $times +1;it makes more sense to use the simple
Code: [Select]
$times++;

That was fixed a long time ago; I didnt update that post. The LaunchWave function isnt getting called; I havent tried the change yet.


I don't suppose we could see an updated code?  I'm not sure exactly what you have left to fix.

o_o

It works perfectly. I had it all right except for actually calling the LaunchWave function. Thanks for all of the help, guys! :D