
-----------------------------------
sloppyjoes
Thu Apr 24, 2003 9:56 am

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???

-----------------------------------
Asok
Thu Apr 24, 2003 9:57 am


-----------------------------------
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.

-----------------------------------
jamez
Thu Apr 24, 2003 10:03 am


-----------------------------------
Well you could do something like this:
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:)

-----------------------------------
Catalyst
Thu Apr 24, 2003 2:29 pm


-----------------------------------
ive got some good explosion pics if ur interested pm me
