|
Post by Interrobang Pie on Jan 8, 2008 3:13:20 GMT 10
|
|
|
Post by CoolCorky on Jan 8, 2008 4:29:04 GMT 10
What kind of gameplay is it going to be? Platform, RPG, fighting?
|
|
|
Post by Interrobang Pie on Jan 8, 2008 17:08:35 GMT 10
Platform, but I haven't fixed out the jumping sprites yet - the character seems to 'airwalk'.
|
|
|
Post by Space on Jan 8, 2008 18:05:41 GMT 10
Platform? Did you do it all yourself? If so, you're better at scripting than I am... My last game used this one...Can't wait to see how yours turns out, though.
|
|
juurikas
Person with More Posts
A rare find at SV! A Sonic hacker!! :)
Posts: 143
|
Post by juurikas on Jan 9, 2008 1:00:18 GMT 10
yea me eather
|
|
|
Post by Interrobang Pie on Jan 9, 2008 4:26:53 GMT 10
Platform? Did you do it all yourself? If so, you're better at scripting than I am... My last game used this one...Can't wait to see how yours turns out, though. Yeah, I'm doing most of the coding myself (however I am using an engine for the text). I might use the jumping part from this as I don't know how to make the jumping sprite work. =/ EDIT: Actually, that example uses something completely different to what I'm using. Once I sort out the script below, I might upload a demo. if air = true { if dir = "l" { sprite_index = spr_scyphenjump_l } if dir = "r" { sprite_index = spr_scyphenjump_r } if vspeed < -1 { image_index = 0 } if vspeed >= -1 and vspeed <= 1 { image_index = 1 } if vspeed > 1 { image_index = 2 } } else if air = false { if dir = "l" and hspeed < 0 { sprite_index = spr_scyphenwalk_l } else if dir = "l" and hspeed = 0 { sprite_index = spr_scyphenidle_l } else if dir = "r" and hspeed > 0 { sprite_index = spr_scyphenwalk_r } else if dir = "r" and hspeed = 0 { sprite_index = spr_scyphenidle_r } } That's in the step event. Yes, I know it's complicated. =P
|
|
|
Post by Breaker on Jan 9, 2008 11:33:35 GMT 10
So, who's in the game and what roles do they have? >>
|
|
PK the Hedgehog
Person with Huge Amount of Posts
10%
I made that Fakemon! :D
Posts: 1,860
|
Post by PK the Hedgehog on Jan 9, 2008 12:15:36 GMT 10
Crap...
I need more training with Gamemaker...
I'm Jealous :s
|
|
|
Post by Interrobang Pie on Jan 9, 2008 17:15:51 GMT 10
So, who's in the game and what roles do they have? >> Everyone that signed up for the comic. Crap... I need more training with Gamemaker... I'm Jealous :s Go grab some tutorials on the GMC.
|
|
juurikas
Person with More Posts
A rare find at SV! A Sonic hacker!! :)
Posts: 143
|
Post by juurikas on Jan 10, 2008 3:13:09 GMT 10
i havent got any skills at all, so youre lucky.
|
|
|
Post by CoolCorky on Jan 10, 2008 4:14:34 GMT 10
Eh, I'm more of a "Drag and drop" person at the moment, but the GML is beginning to make more and more sense. Also, thanks Spacey for posting that platform engine! One other thing... I need more training with Gamemaker... WELL FINALLY
|
|
|
Post by Admiral Mundane on Jan 13, 2008 8:24:39 GMT 10
This looks like it might be a pretty decent game. And I'm in it. I approve!
|
|
|
Post by Interrobang Pie on Jan 16, 2008 17:01:43 GMT 10
Alright, I haven't been working on the game too much lately, but I have got some enemy stats listed down:
Motobug HP: 2 ATK: 1 DEF: 0
Buzzbomber HP: 2 ATK: 2 DEF: 0
If anyone wants a spoiler to find out what their roles are in the game, PM me. Although I think it would be more exciting if you just waited for the demo. =P
EDIT: No, this isn't all of them, there are about 20 more, spread across 4 zones at the minute.
|
|
|
Post by Interrobang Pie on Jan 17, 2008 17:32:35 GMT 10
|
|
PK the Hedgehog
Person with Huge Amount of Posts
10%
I made that Fakemon! :D
Posts: 1,860
|
Post by PK the Hedgehog on Jan 18, 2008 1:19:49 GMT 10
Dirty Cheater...
|
|