[In development] THE FIGHTERS RESOURCE progress thread - Printable Version +- The VG Resource (https://www.vg-resource.com) +-- Forum: Archive (https://www.vg-resource.com/forum-65.html) +--- Forum: July 2014 Archive (https://www.vg-resource.com/forum-139.html) +---- Forum: Creative Zone (https://www.vg-resource.com/forum-86.html) +----- Forum: Games Development (https://www.vg-resource.com/forum-22.html) +----- Thread: [In development] THE FIGHTERS RESOURCE progress thread (/thread-18496.html) |
RE: [In development] THE FIGHTERS RESOURCE progress thread - Garamonde - 11-12-2011 Not really... RE: [In development] THE FIGHTERS RESOURCE progress thread - Gors - 11-15-2011 also edited Gilbert's eyes to include the white part also, I've done some taunt speech bubbles those can be programmed by the player to show up whenever you taunt and/or die (at least, that's what I had in my mind. I don't know if programming it is possible.) I changed 'NICE!' to 'CHILLIN' too because it fits more with tSR RE: [In development] THE FIGHTERS RESOURCE progress thread - Previous - 11-15-2011 Almost everything can be programmes. Only question is whether it's easy or hard. The definable taunt bubbles shouldn't be a problem, I'm certain Robo9 can handle that. RE: [In development] THE FIGHTERS RESOURCE progress thread - Gors - 11-15-2011 oh, I almost forgot more music http://www.4shared.com/audio/rRfQ2rRp/Training_Mode_2.html a better (?) training mode theme http://www.4shared.com/audio/bEjZWInE/Ending_Theme_1.html and an ending theme @previous: that's great. Sometimes I get carried on my ideas, I forget if the programmer will find it viable or not RE: [In development] THE FIGHTERS RESOURCE progress thread - [robo9] - 11-15-2011 I'm sure its possible, I'm just not sure how. I know for a fact I can do the taunt bubble, but having them cycle randomly is something I don't know how to do. A quick question on a forum though on how to do it will solve that problem though. Also do you mind explaining to me what the candle special is supposed to do? I'm not too sure what it does besides flicker. RE: [In development] THE FIGHTERS RESOURCE progress thread - Gors - 11-16-2011 the candlehead attack is an air cancel attack. Anyone who comes from above is burnt with the fire. I also made some progress in other things
RE: [In development] THE FIGHTERS RESOURCE progress thread - Vipershark - 11-16-2011 i'm still wondering what jetters' moe form will be oh god and gillian's RE: [In development] THE FIGHTERS RESOURCE progress thread - Gors - 11-16-2011 finished all the icons RE: [In development] THE FIGHTERS RESOURCE progress thread - Garamonde - 11-16-2011 What the heck is a moe form (assuming I'm not missing something)...? RE: [In development] THE FIGHTERS RESOURCE progress thread - Previous - 11-16-2011 (11-15-2011, 05:10 PM)[robo9] Wrote: I'm sure its possible, I'm just not sure how. I know for a fact I can do the taunt bubble, but having them cycle randomly is something I don't know how to do. A quick question on a forum though on how to do it will solve that problem though.All you need is a case statement comparing a value (either set by the player, choosing their taunt bubble - or set randomly) with preset values which determine which image should be drawn. I never used MMF2, so I can't say how it's done there or what kind of coding language thingy it uses. In case MMF2 doesn't support case statements, simple if.. else if... else etc. would do. If that isn't available either... I hope it does at least support if statements. So you can just check IF value=1 "FUCK" IF value=2 "uguu~" IF..... etc.pp. RE: [In development] THE FIGHTERS RESOURCE progress thread - Iceman404 - 11-16-2011 Mighty Jetters' just needs a move where she lays a large bomb and a shit ton of 'THANKS' pop out. RE: [In development] THE FIGHTERS RESOURCE progress thread - Vipershark - 11-16-2011 (11-16-2011, 02:28 PM)Mighty Jetters Wrote: What the heck is a moe form (assuming I'm not missing something)...? it's when i do my spritality move on you sol's: gorsal's: mine: RE: [In development] THE FIGHTERS RESOURCE progress thread - Garamonde - 11-16-2011 Ohhhhh. Like Mortal Kombat or something. Either turn me into a bunny or use your imagination but don't make everything centered on thanks. There's more to me than that. RE: [In development] THE FIGHTERS RESOURCE progress thread - Guy - 11-16-2011 I dunno, Vipershark's sprite seems more like a Tsundere tease. In game maker (yeah i know you're using MMF2), the random taunt bubbles could be defined right in the create event like so: as you can see, random emotes aren't all that hard to achieve, this should give you an idea of how to do so [robo9]. EDIT: @ Sploder, thanks i hadn't thought about that. RE: [In development] THE FIGHTERS RESOURCE progress thread - Kitsu - 11-16-2011 (11-16-2011, 05:19 PM)Mighty Jetters Wrote: There's more to me than that. Yes, like good taste in Pokemen. (11-16-2011, 05:19 PM)Mighty Jetters Wrote: bunny[girl]There you go. @Guy, you might wanna use floor there instead of round, since using round might end up with 25, when the valid values go only from 0-24 (of course, this wouldn't be a problem in GM, though it could be in other languages/programs). |