Recent posts by MES13 on Kongregate

Subscribe to Recent posts by MES13 on Kongregate

avatar for MES13 MES13 53 posts
Flag Post

Topic: Game Programming / Jumping???

I saw that i missed like two or three things. I liked both post though

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: Game Programming / Jumping???


if(isJumping)
{
y += jumpSpeed;
jumpSpeed +=1;
if(
y >= startY)
{
_y = startY;
isJumping = false;

}
}

if(Key.isDown(Key.SPACE) && jumpLimiter > 20)
{
isJumping = true;
jumpSpeed = -15;
jumpLimiter = 0;
}

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: Game Programming / Jumping???

I am trying to make a platform game and I’m stuck on trying to make something jump. Any help?

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: Kongregate Labs / What is a good Flash progam to make games?

google flashdevelop.org

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: Kongregate Labs / Anywhere where I canget the latest Adobe Flash for free?

So everyone… Remember this is what NOT to do….. Right???? Because if you download around $500 you’ll get in t r o u b l e.

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: General Gaming / Help!

Hahaha nice what kind of hardcore music???

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: General Gaming / Help!

Yeah. One of the things i have done is make it to where you dont lose points when a bullet gets by you. It was supposed to be an enemy but i accidently made it to the bullet. And it does have powerups – health – shield – and nuke. Any ideas on how to change it so its not like a shootorial…

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: General Gaming / Help!

What can I do to improve this game…I know the graphics but what else could I add to the game?

http://www.kongregate.com/games/MES13/clones-attack

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: General Gaming / Need Advice!

This is my first game. I want to know some ways on how to improve it… Maybe ideas different theme, anything that you would like to see. Just anything that you could think of to make it better..

http://www.kongregate.com/games/MES13/clones-at…

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: Kongregate Labs / First game. Need advice...

This is my first game. I want to know some ways on how to improve it… Maybe ideas different theme, anything that you would like to see. Just anything that you could think of to make it better..

http://www.kongregate.com/games/MES13/clones-attack

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: Kongregate Labs / Jumptorials: Learn To Make A Platformer

The tutorials would be a big help for beginners. Especially with code concepts. I think its a great idea!

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: Kongregate Labs / Theme???

Is there any theme that you would like to see in a shootorial???

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: The Arts / Sticky

True but what about the people that want to post their art for a game and then their thread gets moved back in pages?

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: The Arts / Sticky

They should make a sticky so people that want to share their art for games can post them! So developers don;t have to go through every page trying to find artwork.

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: Off-topic / Music plz.

Yeah

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: Off-topic / Music plz.

I’m making a game and i was wanting to know if anyone would like to share music that they’ve made. I was looking for some techno or metal. Something along those lines.

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: The Arts / Ship Sprites???

How do u know where to start with a drawing??? And are there any tips? I’m going to try to learn to make sprites.

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: The Arts / Ship Sprites???

What software do you normally use??? Anyone.

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: The Arts / Ship Sprites???

Its a shootorial game. I was wanting some space ship sprites or airships sprites. And doesnt matter what kind of view. I was hoping to get an 2 enemies. 1 regular and the other one elite. then two bosses. a mini boss and then a big boss.

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: Kongregate Labs / Shootorials #3, #4, #5 and #6 with Free Tools - mtasc and swfmill

There is nowhere to get CS3 or 4 unless you have $$$ or get a pirated copy. Which is Illegal.

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: Kongregate Labs / Shootorials #3, #4, #5 and #6 with Free Tools - mtasc and swfmill

could u upload ur code with sound??

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: The Arts / Ship Sprites???

I’m looking for some ship sprites for my game??? im horrible when it comes to graphics.. any help…

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: Game Programming / Loading Bar

How would you add a loading bar when your game is loading?

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: Game Programming / Fire Different Directions

Also I dont want it to follow my ship. Any clues?

 
avatar for MES13 MES13 53 posts
Flag Post

Topic: Game Programming / Fire Different Directions

Ok so i figured out the trig that’s involved the thing is that i cant find a keyword that would set an angle. How would i get it to move the angle that it is facing???