Monster Racer Rush
Select between 5 monster racers, upgrade your monster skill and win the competition!
4.23 / 5.00 3,881 ViewsBuild and Base
Build most powerful forces, unleash hordes of monster and control your soldiers!
3.93 / 5.00 4,634 ViewsAt 8/26/14 11:30 AM, WahyahRanger wrote: Your tears are delicious.
unlike your mums fanny m8 it stinks
At 8/26/14 11:20 AM, SCTE3 wrote: Only 5 pieces might be getting blammed but we tend to remove a lot of junk daily too. So technically more than 5 get blammed but you don't get the points since items that get removed by the mod team yield no points to anyone.
Thanks. I just haven't been here for a while and I was suprised at how low the number of failed submissions was. It used to be around 50 a day a few years back didn't it?
At 8/26/14 11:14 AM, WahyahRanger wrote: All the basic comeback shit I'd expect from an under-developed European child.
Member since: Jan. 16, 2014
Over 3000 posts
No wonder Americans are so fucking fat
Go for a walk kiddo
At 8/26/14 11:09 AM, WahyahRanger wrote: How'd you learn though?
Lemme guess; mom taught you?
Yeah, yours
At 8/26/14 10:54 AM, WahyahRanger wrote:At 8/26/14 10:40 AM, 20max14 wrote: Acting tough on internet cartoon forums is a good sign that you were molested at some point.I molest myself frequently.
Is there something you want to talk about?
"No bad hand why are you touching me there"
Did your uncle show you how to do that though?
At 8/26/14 10:38 AM, WahyahRanger wrote: *Obligatory copy-paste threat that doesn't mean shit*
Now fuck off.
Acting tough on internet cartoon forums is a good sign that you were molested at some point.
Is there something you want to talk about?
At 8/26/14 10:35 AM, WahyahRanger wrote: So stop being a little bitch.
What the fuck did you just fucking say about me?
At 8/26/14 10:31 AM, WahyahRanger wrote: Quality is increasing?
haha
I'll give you a clue, Mexico is closer to Colombia
Even if you don't like the more political stuff I don't see how you can prefer the first two over season 3
At 8/26/14 09:36 AM, GIRFAN wrote:At 8/26/14 09:20 AM, 20max14 wrote: Around blacks never relax-2500 faith in humanity
Which units do you use to measure faith in humanity? Metric or imperial?
Just buy the fucking water filters people
At 8/26/14 07:13 AM, psychopathy wrote: just curious, did you think this idea for a thread was funny before posting?
because it's kinda not
Don't worry OP this guys just butthurt because he browses tumblr daily
I remember when the limit was 5MB for submissions
At 8/7/14 09:55 PM, MSGhero wrote: I doubt anyone is gonna download that. Just post your code. Your fla doesn't matter.
I managed to get it working, thanks anyway
Thanks guys I managed to get the bullets to remove themselves, I think I've removed them from the array properly as well. However the game still slows down after a lot of bullets have been fired. How can I stop this from happening?
Here is the FLA and all relevant files
http://speedy.sh/SsGfU/Shooter.rar
I'm trying to make a space shooter game, I've managed to get bullets firing from the ship. I want the bullets to be removed when they reach the top of the screen. Here is the code I have:
for each(var playerBullet:PlayerBullet in playerBullets)
{
playerBullet.move();
if(playerBullet.y<0)
{
stage.removeChild(playerBullet);
}
}
This brings up error:
Error #2025: The supplied DisplayObject must be a child of the caller
The playerBullet.move() code works perfectly fine but trying to remove the bullets brings up errors. Can anybody give me tips to fix this? Thanks in advance