Hello Guest, please login or register.
Did you miss your activation email?
Login with username, password and session length.

Pages: 1 2 [3] 4   Go Down

Author Topic: Game Maker exclusive contest #1  (Read 14833 times)

0 Members and 1 Guest are viewing this topic.

DJvenom

super-sage
Re: Game Maker exclusive contest #1
« Reply #40 on: December 30, 2010, 01:23:11 am »
  • Colbydude was here.
  • *
  • Reputation: +7/-0
  • Offline Offline
  • Gender: Female
  • Posts: 2898
Knocked the turn in date back a week :)!

Also:

Obviously, those sprites are placeholders. I'm gonna be programming some later this evening :)
« Last Edit: December 30, 2010, 01:59:10 am by DJvenom »
Logged
I do art
I ermmm... DID do art
I do art
Re: Game Maker exclusive contest #1
« Reply #41 on: December 30, 2010, 08:56:26 pm »
  • *
  • Reputation: +12/-2
  • Offline Offline
  • Gender: Male
  • Posts: 4849
I don't know if I am going to be able to finish.  Found out my dad's mom got pneumonia 3 weeks ago.  Once she started to recover, she fell and broke her back.  Add emphysema to the mix... Going up on a 4 hour drive (I'll wave at you along the way, Travis) to see ehr on the 2nd or 3rd.  Then I have university orientation on the 6th as well as my move in date for the dorms.

I'll keep working on it though.
Mine is not going to be any graphically spectacular as I haven't ever used the draw functions much.

Here's is what i am at so far.
Link is fully animated with walking and the flowers are animated as well.
All using draw, no sprites.
« Last Edit: December 30, 2010, 08:58:02 pm by Theforeshadower »
Logged
  • Super Fan Gamers!

Mamoruanime

@Mamoruanime
Re: Game Maker exclusive contest #1
« Reply #42 on: December 30, 2010, 09:24:29 pm »
  • ^Not actually me.
  • *
  • Reputation: +9/-0
  • Offline Offline
  • Gender: Male
  • Posts: 9786
Oh we're posting screenies D:
Logged

Ryuza

That one guy
Re: Game Maker exclusive contest #1
« Reply #43 on: December 31, 2010, 12:11:36 am »
  • RyuKage2007
  • *
  • Reputation: +0/-0
  • Offline Offline
  • Gender: Male
  • Posts: 290
I'll enter but I'm not so sure I'll have something done by the due date D:

I'll give it a try anyway though cause it seems like it'll be pretty fun and I've got plenty of free time :D

Would I be correct in assuming we can't use "sprite_create_from_screen();" or something to create a sprite resource from something we drew in-game using code?
I know you said "no sprites at all" but I thought I'd double check before getting to work on it.
« Last Edit: December 31, 2010, 12:34:11 am by Ryuza »
Logged
<- Koholint Island - MC Style  <- Link's Awakening Photo Recolors  <- Wind Waker 3D Resources <- Super Mario Bros Crossover
  • RyuKage2007's Youtube

Xiphirx

wat
Re: Game Maker exclusive contest #1
« Reply #44 on: December 31, 2010, 12:33:07 am »
  • Xiphirx
  • *
  • Reputation: +0/-0
  • Offline Offline
  • Gender: Male
  • Posts: 3007
Oh we're posting screenies D:

How'd you do the grid distortion D;
Logged
  • For The Swarm

Ryuza

That one guy
Re: Game Maker exclusive contest #1
« Reply #45 on: December 31, 2010, 12:37:01 am »
  • RyuKage2007
  • *
  • Reputation: +0/-0
  • Offline Offline
  • Gender: Male
  • Posts: 290
LOL I am starting to wonder if this might be a bit too excessive:
Code: [Select]
{
draw_point(x+5,y);
draw_point(x+6,y);
draw_point(x+7,y);
draw_point(x+8,y);
draw_point(x+9,y);
draw_point(x+4,y+1);
draw_point(x+10,y+1);
draw_point(x+4,y+2);
draw_point(x+3,y+2);
draw_point(x+6,y+2);
draw_point(x+7,y+2);
draw_point(x+11,y+2);
draw_point(x+12,y+2);
draw_point(x+2,y+3);
draw_point(x+4,y+3);
draw_point(x+5,y+3);
draw_point(x+11,y+3);
draw_point(x+13,y+3);
draw_point(x+2,y+4);
draw_point(x+4,y+4);
draw_point(x+6,y+4);
draw_point(x+7,y+4);
draw_point(x+8,y+4);
draw_point(x+9,y+4);
draw_point(x+11,y+4);
draw_point(x+13,y+4);
draw_point(x+2,y+5);
draw_point(x+4,y+5);
draw_point(x+5,y+5);
draw_point(x+6,y+5);
draw_point(x+7,y+5);
draw_point(x+8,y+5);
draw_point(x+9,y+5);
draw_point(x+10,y+5);
draw_point(x+11,y+5);
draw_point(x+13,y+5);
draw_point(x+2,y+6);
draw_point(x+5,y+6);
draw_point(x+6,y+6);
draw_point(x+7,y+6);
draw_point(x+8,y+6);
draw_point(x+9,y+6);
draw_point(x+10,y+6);
draw_point(x+13,y+6);
draw_point(x+3,y+7);
draw_point(x+6,y+7);
draw_point(x+9,y+7);
draw_point(x+12,y+7);
draw_point(x+3,y+8);
draw_point(x+6,y+8);
draw_point(x+9,y+8);
draw_point(x+12,y+8);
draw_point(x+2,y+9);
draw_point(x+4,y+9);
draw_point(x+11,y+9);
draw_point(x+13,y+9);
draw_point(x+1,y+10);
draw_point(x+4,y+10);
draw_point(x+5,y+10);
draw_point(x+6,y+10);
draw_point(x+7,y+10);
draw_point(x+8,y+10);
draw_point(x+9,y+10);
draw_point(x+10,y+10);
draw_point(x+11,y+10);
draw_point(x+13,y+10);
draw_point(x+1,y+11);
draw_point(x+3,y+11);
draw_point(x+4,y+11);
draw_point(x+9,y+11);
draw_point(x+13,y+11);
draw_point(x+2,y+12);
draw_point(x+3,y+12);
draw_point(x+9,y+12);
draw_point(x+12,y+12);
draw_point(x+3,y+13);
draw_point(x+4,y+13);
draw_point(x+5,y+13);
draw_point(x+6,y+13);
draw_point(x+10,y+13);
draw_point(x+11,y+13);
draw_point(x+2,y+14);
draw_point(x+3,y+14);
draw_point(x+7,y+14);
draw_point(x+8,y+14);
draw_point(x+9,y+14);
draw_point(x+10,y+14);
draw_point(x+11,y+14);
draw_point(x+12,y+14);
draw_line(x+3,y+15,x+11,y+15);
}

=D

Lol, I actually just did that in GM just to see what it'd draw, very nice.
Logged
<- Koholint Island - MC Style  <- Link's Awakening Photo Recolors  <- Wind Waker 3D Resources <- Super Mario Bros Crossover
  • RyuKage2007's Youtube

DJvenom

super-sage
Re: Game Maker exclusive contest #1
« Reply #46 on: December 31, 2010, 02:57:42 am »
  • Colbydude was here.
  • *
  • Reputation: +7/-0
  • Offline Offline
  • Gender: Female
  • Posts: 2898
sprite_create_from_screen and all sprite creation functions utilized in-game are welcome :)
Logged
I do art
I ermmm... DID do art
I do art

Ryuza

That one guy
Re: Game Maker exclusive contest #1
« Reply #47 on: December 31, 2010, 09:29:45 pm »
  • RyuKage2007
  • *
  • Reputation: +0/-0
  • Offline Offline
  • Gender: Male
  • Posts: 290
Cool, that might be helpful when it comes to reusing some sprites later on in the game.

I already have my concept down on all I've gotta do is start working on the code. :)

Don't think I'll be able to do this, something came up and took a bit of my free time :P

Still looking forward to seeing everyone elses entries though.
« Last Edit: January 07, 2011, 05:55:29 pm by Ryuza »
Logged
<- Koholint Island - MC Style  <- Link's Awakening Photo Recolors  <- Wind Waker 3D Resources <- Super Mario Bros Crossover
  • RyuKage2007's Youtube

Mamoruanime

@Mamoruanime
Re: Game Maker exclusive contest #1
« Reply #48 on: January 07, 2011, 12:04:07 pm »
  • ^Not actually me.
  • *
  • Reputation: +9/-0
  • Offline Offline
  • Gender: Male
  • Posts: 9786
*cant wait until this comes to a close so he can submit his entry* ;3

Although it's still waiting on music by Sir Surasshu; which shall be hear in a couple of days ;3
Logged

DJvenom

super-sage
Re: Game Maker exclusive contest #1
« Reply #49 on: January 07, 2011, 07:55:23 pm »
  • Colbydude was here.
  • *
  • Reputation: +7/-0
  • Offline Offline
  • Gender: Female
  • Posts: 2898
  • All work is to be PMed to myself 1/14/11! (earlier if you'd like)
Logged
I do art
I ermmm... DID do art
I do art

Mamoruanime

@Mamoruanime
Re: Game Maker exclusive contest #1
« Reply #50 on: January 07, 2011, 11:52:06 pm »
  • ^Not actually me.
  • *
  • Reputation: +9/-0
  • Offline Offline
  • Gender: Male
  • Posts: 9786
XD yeah but I'm itching for a simultaneous release :P
Logged
Re: Game Maker exclusive contest #1
« Reply #51 on: January 08, 2011, 03:16:46 am »
  • *
  • Reputation: +12/-2
  • Offline Offline
  • Gender: Male
  • Posts: 4849
Just moved into MSU, but I forgot to put my GM8 onto my laptop so now I have none of work.

BTW, Travis, you should show me around town, like all the good burger joints, bars, etc. :p
Logged
  • Super Fan Gamers!

Mamoruanime

@Mamoruanime
Re: Game Maker exclusive contest #1
« Reply #52 on: January 08, 2011, 04:25:52 am »
  • ^Not actually me.
  • *
  • Reputation: +9/-0
  • Offline Offline
  • Gender: Male
  • Posts: 9786
Just moved into MSU, but I forgot to put my GM8 onto my laptop so now I have none of work.

BTW, Travis, you should show me around town, like all the good burger joints, bars, etc. :p

Steak n' Shake? lulz

I know nothing of your area of town :P East Lansing is unfamiliar to me.
Logged

Ryuza

That one guy
Re: Game Maker exclusive contest #1
« Reply #53 on: January 08, 2011, 05:04:30 am »
  • RyuKage2007
  • *
  • Reputation: +0/-0
  • Offline Offline
  • Gender: Male
  • Posts: 290
Didn't realize we had some other people from Michigan around here.
Logged
<- Koholint Island - MC Style  <- Link's Awakening Photo Recolors  <- Wind Waker 3D Resources <- Super Mario Bros Crossover
  • RyuKage2007's Youtube

DJvenom

super-sage
Re: Game Maker exclusive contest #1
« Reply #54 on: January 08, 2011, 11:32:15 pm »
  • Colbydude was here.
  • *
  • Reputation: +7/-0
  • Offline Offline
  • Gender: Female
  • Posts: 2898
Cleaned up the topic. Keep bland sarcastic comments to self. I'm running this contest for fun, not for people to get at eachother's throats. I also agree that a LOT of your replies have come across as almost trying to provoke a negative reply, or trying to passive-aggressively insult people. Who Mamoruanime chooses as a composer is his own business. There is absolutely no reason to say he better offer a mute button, or you'll shut your sound off when you play. It's insulting to him, AND his composer. Also, saying people with good graphical abilities have an advantage here is probably the most untrue thing imaginable. The point of the contest is to make a game with 0 graphics, so people who rely on their artistic abilities for games are at a severe DISadvantage. I'm possibly not going to make the deadline due to it :(


New rendering system, and yes the brick texture was made with draw_point :)
« Last Edit: January 10, 2011, 05:01:05 am by DJvenom »
Logged
I do art
I ermmm... DID do art
I do art
Re: Game Maker exclusive contest #1
« Reply #55 on: January 13, 2011, 11:01:43 am »
  • :D
  • *
  • Reputation: +1/-0
  • Offline Offline
  • Gender: Male
  • Posts: 151
Exactly what time is the deadline? Am I able to submit it Friday night?
Logged
  • Knighty Games

DJvenom

super-sage
Re: Game Maker exclusive contest #1
« Reply #56 on: January 14, 2011, 03:05:02 am »
  • Colbydude was here.
  • *
  • Reputation: +7/-0
  • Offline Offline
  • Gender: Female
  • Posts: 2898
Friday night 1/14/11 at 11:59:59PM PST :)
Logged
I do art
I ermmm... DID do art
I do art

DJvenom

super-sage
Re: Game Maker exclusive contest #1
« Reply #57 on: January 14, 2011, 05:14:31 am »
  • Colbydude was here.
  • *
  • Reputation: +7/-0
  • Offline Offline
  • Gender: Female
  • Posts: 2898
Double-post updatestravaganza:
The next contest has already been decided, and will be open to all programmers :) It's gonna be a gauntlet of sorts, and will be running all of February. Sign-ups and details will begin and be posted immediately on the 15th!
Logged
I do art
I ermmm... DID do art
I do art

Mamoruanime

@Mamoruanime
Re: Game Maker exclusive contest #1
« Reply #58 on: January 15, 2011, 12:21:35 am »
  • ^Not actually me.
  • *
  • Reputation: +9/-0
  • Offline Offline
  • Gender: Male
  • Posts: 9786
Mine's submitted via Jordan's PM box!!
Logged

DJvenom

super-sage
Re: Game Maker exclusive contest #1
« Reply #59 on: January 15, 2011, 02:36:00 am »
  • Colbydude was here.
  • *
  • Reputation: +7/-0
  • Offline Offline
  • Gender: Female
  • Posts: 2898
I was gonna knock more of mine out before this evening, but I just got off an 8 hour day I worked on 3 hours of sleep, so I'm gonna sleep instead and turn in a very incomplete project :( I basically cheated for a large chunk of mine, using draw_point anyways. Who woulda guessed not being able to have sprites would hinder me? :3c At least I have a base for what can now become an actual project, which is why I started this contest anyways! Hope I at least stand a chancu!
« Last Edit: January 15, 2011, 02:37:35 am by DJvenom »
Logged
I do art
I ermmm... DID do art
I do art
Pages: 1 2 [3] 4   Go Up

 


Contact Us | Legal | Advertise Here
2013 © ZFGC, All Rights Reserved



Page created in 0.064 seconds with 78 queries.

anything