Computer Science Canada

How would you show bombs explodin in bomberman???!?

Author:  sloppyjoes [ Thu Apr 24, 2003 9:56 am ]
Post subject:  How would you show bombs explodin in bomberman???!?

We established a basic movement for the bombermen, but we can't find any sprites of the bombs exploding? Any ideas???

Author:  Asok [ Thu Apr 24, 2003 9:57 am ]
Post subject: 

make a picture of a bomb in paint, black oval with a line at the top, then simply drop that image at the same coordinate of the bomberman when he drops them.

Author:  jamez [ Thu Apr 24, 2003 10:03 am ]
Post subject: 

Well you could do something like this:
code:
process Xplode (x, y : real)
    const r : int := 25
    for i : 1 .. r
        drawoval (round (x), round (y), i, i, Rand.Int (40, 44))
        delay (10)
    end for
    for i : 1 .. r
        drawfilloval (round (x), round (y), i, i, 0)
        delay (10)
    end for
end Xplode

fork Xplode (Rand.Int (0, maxx), Rand.Int (0, maxy))


But make it look prettier of course:)

Author:  Catalyst [ Thu Apr 24, 2003 2:29 pm ]
Post subject: 

ive got some good explosion pics if ur interested pm me


: