Emuforums.com

Go Back   Emuforums.com > General Discussion > Web development / Programming
Home Register Downloads FAQ Members List Calendar Arcade Mark Forums Read

WON'T YOU JOIN US?
You are not a registered member and
are viewing this site as a guest.
Registration is simple and FREE.
Join this CrowdGather community today.
Registration offers the following perks:

» Less advertising throughout
» Post and participate in discussions
» Network with other forum members
» Free private messaging

join

View Poll Results: How did u like the game
Damn i suck, Its too diffcult 2 33.33%
I'm a hardcore arcade guy, its too easy : | 0 0%
Well Done !! 2 33.33%
I can do better than you o_O 1 16.67%
No comment... 1 16.67%
Voters: 6. You may not vote on this poll

Reply
 
Thread Tools Display Modes
Old July 6th, 2002, 04:19   #1
average_guy
Banned
 
average_guy's Avatar
 
Join Date: Nov 2001
Posts: 1,865
game developing and testing page

Ok, i made a game called space shooter, basically u control a plane and shoot down as many enemys as possible. Download and tell me what u think, my personal high score is 3890.here

If the above link won't work for some reason, trythis link

Both link is hosted by yahoo so i'm not that sure it will work.

Last edited by average_guy; July 6th, 2002 at 18:27..
average_guy is offline   Reply With Quote

Advertisement [Remove Advertisement]
Old July 6th, 2002, 05:21   #2
cooliscool
Global Moderator
 
cooliscool's Avatar
 
Join Date: Jul 2001
Location: SC, USA
Posts: 7,231
heh, nice work! i got 1075 before i died, too many bullets!! nie job, what was it made in?
__________________
cooliscool is offline   Reply With Quote
Old July 6th, 2002, 05:29   #3
average_guy
Banned
 
average_guy's Avatar
 
Join Date: Nov 2001
Posts: 1,865
Coding in c++ format, the drawing part was bit complex, took me hours to figur out. This game is not finished, i did many improvment from the first version. In the first version, there is gilthes that allow you move outside of the screen and be invisiciable. I also add another type of enemy shaped like a star, i used to have only one kind.

------------------------
//if instance doesn't exist, program will
//cause a fatal error and may freeze completlly
//checking to see if instance exist

if (instance_exists(myPlayer))
{
//behind the health bar
pen_color=make_color(150,150,150);
brush_color=make_color(150,150,150);

x1=5;
y1=screen_height-15;
x2=110;
y2=screen_height-5;
draw_rectangle(x1,y1,x2,y2);
}
//health bar
if (instance_exists(myPlayer))
{
pen_color=make_color(0,0,255);
brush_color=make_color(0,0,255);
x1=7;
y1=screen_height-13;
x2=7+myPlayer.myEnergy;
y2=screen_height-7;
draw_rectangle(x1,y1,x2,y2);
}


for (i=0 ; i<playerLives ; i+=1)
{
draw_sprite(sprLife,0,140+30*i,screen_height-25);
}
---------------------------
average_guy is offline   Reply With Quote
Old July 6th, 2002, 05:31   #4
average_guy
Banned
 
average_guy's Avatar
 
Join Date: Nov 2001
Posts: 1,865
so you think it was too hard? well, its better than too easy, in my first version, enemy shoots 1 bullet in 5 seconds, any dumbass could douge that.
average_guy is offline   Reply With Quote
Old July 6th, 2002, 07:46   #5
Ninjaa
Banned
 
Ninjaa's Avatar
 
Join Date: Oct 2001
Location: Soviet Canuckistan
Posts: 7,778
no, he was talking about the first version.

Sorry, but I couldn't download the file, otherwise I would be happy to test it for ya.
Ninjaa is offline   Reply With Quote
Old July 6th, 2002, 08:35   #6
ammoQ
Emu author
 
ammoQ's Avatar
 
Join Date: Mar 2002
Location: Vienna/Austria/Europe
Posts: 1,168
My high score is 2440. It's too difficult.
__________________
If you think my English is bad, wait till you read my Polish.
ammoQ is offline   Reply With Quote
Old July 6th, 2002, 16:07   #7
Decoy_Octopus
Master of Disguise
 
Decoy_Octopus's Avatar
 
Join Date: Jan 2002
Location: Here... again...
Posts: 1,508
Geocities says the page is unavailable, although I would love to try your game.
__________________
"I contend that any game that draws people in is a good thing, because the more people play computer games,
the more the hobby becomes legitimized and loses its social-retard status."- Jeff Green
Decoy_Octopus is offline   Reply With Quote
Old July 6th, 2002, 16:33   #8
sniff_381
†PeaceMaker†
 
sniff_381's Avatar
 
Join Date: Jun 2002
Location: between reality and dream
Posts: 708
nice game... I only got 1620
sniff_381 is offline   Reply With Quote
Old July 6th, 2002, 16:53   #9
average_guy
Banned
 
average_guy's Avatar
 
Join Date: Nov 2001
Posts: 1,865
Quote:
Originally posted by cooliscool
you are calling me a dumb ass, im sorry but i dont find that cool at all, especially after someone gives you a compliment
i did NOT call you a dumb ass, you should have read my post carefully. I said on my first version its too easy, and dumbass can beat it, the version i posts here is my second version, and its hard. Even for me
average_guy is offline   Reply With Quote
Old July 6th, 2002, 19:29   #10
j1188
Guest
 
Posts: n/a
I only got 675 ......Must....... avoid.......bullets....

edit: cool game by the way! :thumbup:
  Reply With Quote
Old July 6th, 2002, 20:23   #11
average_guy
Banned
 
average_guy's Avatar
 
Join Date: Nov 2001
Posts: 1,865
yeah, its too hard, i will make few updates later
average_guy is offline   Reply With Quote
Old July 6th, 2002, 21:05   #12
cooliscool
Global Moderator
 
cooliscool's Avatar
 
Join Date: Jul 2001
Location: SC, USA
Posts: 7,231
Quote:
Originally posted by average_guy


i did NOT call you a dumb ass, you should have read my post carefully. I said on my first version its too easy, and dumbass can beat it, the version i posts here is my second version, and its hard. Even for me
sorry about that! took it wrong, sry
__________________
cooliscool is offline   Reply With Quote
Old July 6th, 2002, 21:12   #13
cooliscool
Global Moderator
 
cooliscool's Avatar
 
Join Date: Jul 2001
Location: SC, USA
Posts: 7,231
Attached Images
File Type: jpg ss.jpg (25.1 KB, 62 views)
__________________
cooliscool is offline   Reply With Quote
Old July 6th, 2002, 21:31   #14
average_guy
Banned
 
average_guy's Avatar
 
Join Date: Nov 2001
Posts: 1,865
average_guy is offline   Reply With Quote
Old July 7th, 2002, 21:08   #15
cooliscool
Global Moderator
 
cooliscool's Avatar
 
Join Date: Jul 2001
Location: SC, USA
Posts: 7,231
Wink

np
__________________
cooliscool is offline   Reply With Quote
Old July 8th, 2002, 12:53   #16
SnakeBite
Translator
 
SnakeBite's Avatar
 
Join Date: Apr 2002
Location: Norway
Posts: 669
Damn, it's too difficult I only got 400... Maybe I'm just bad...
__________________
This is my new improved sig.
SnakeBite is offline   Reply With Quote
Old July 8th, 2002, 16:38   #17
average_guy
Banned
 
average_guy's Avatar
 
Join Date: Nov 2001
Posts: 1,865
this game is difficult but normal people can get over 1000 second time they play
average_guy is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

All times are GMT +1. The time now is 23:57.

© 2006 - 2012 Emu Forums | About Emu Forums | Advertisers | Investors | Legal | A member of the Crowdgather Forum Community


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2013, vBulletin Solutions, Inc.