How to run two instances of the same function???
Hello every1,
I'm making a clone of arkanoid. Now when a brick is hit, apowerup falls down. The powerup reached half way, when another brick is hit and another powerup falls down. I wanna know, how can i manage both the powerUp?? How achieve this. Have i made myself clear.
Ahh. and I thought you meant recursion
You`ll need an array, as one varaible can`t be two things at once.
Ex:
VB Code:
dim x(0 to 4)
sub command1_click(llallala)
x(0) = 1
x(1) = x*2
x(2) = 3
x(3) = x(3)+1
x(4) = 24
for a = 0 to 4
msgbox x(a)
next a
end sub