YesNoOk
avatar

I need some SERIOUS help (Read 3314 times)

Started by Navarro0, June 29, 2019, 07:44:41 pm
Share this topic:
I need some SERIOUS help
#1  June 29, 2019, 07:44:41 pm
  • avatar
    • USA
Im trying to make a fighting game where where is no gravity, and all characters can walk on walls icluding the ceiling. The problem is i have no idea where to start. Can someone please help me figure out where to even begin coding this.
Re: I need some SERIOUS help
#2  June 30, 2019, 08:56:43 pm
  • ******
  • Hedgehog Whisperer
  • Red Bull addict
    • Spain
    • xgargoyle.mgbr.net
physics = N, in every statedef

For the rest of the stuff, you will need to provide more details on what you want to achieve if you need more assistance
XGargoyle: Battle posing since 1979
http://xgargoyle.mgbr.net
http://www.pandorabots.com/pandora/talk?botid=e71c0d43fe35093a  <-- Please click that link
http://paypal.me/XGargoyle  <-- Donations welcome!
Re: I need some SERIOUS help
#3  July 01, 2019, 06:36:08 am
  • avatar
    • USA
Cool thanks. For the other one i want have my characters to be able to literally walk upside down on the ceiling
Re: I need some SERIOUS help
#4  July 03, 2019, 05:29:43 am
  • ****
  • Still lurks regularly, but posts once a blue moon
    • Canada
I don't know your coding background, so if you haven't familiarized yourself with Mugen's documentation you can do so here: http://www.elecbyte.com/mugendocs/mugen.html
Also be sure to look into kfm's files for additional notes/tips/etc. that the docs don't cover.

Since you're using physics = N, you will need to code in your own physics where applicable.

To break down what you'll need to consider in terms of coding, I'd imagine you'll need a way to keep track of whether your character is on the ground, ceiling, walls, etc.  You could possibly do this with variables, or have a specific set of states to denote whether they're on the ground/ceiling/etc.  How you decide to do this is up to you.
Re: I need some SERIOUS help
#5  July 03, 2019, 08:36:15 pm
  • avatar
    • USA
Thank you so much. I dont have much coding experience to be honest so im not sure what im gonna have to do in terms of adding new physics like you said or specific variables or states for when theyre on the walls. This is all new, but im really excited and i really hope i can pull this off.
Re: I need some SERIOUS help
#6  July 06, 2019, 02:56:10 am
  • avatar
    • USA
So I turned all of the physics to N. The result is basically everything is the same as in hits, knockdowns etc. Everything except for jumping. When they jump they kind of just keep going and i can't see what happens up there. what im trying to go for is literall y like a character will slowly float away from another character if they are knocked down or hit in the air. I'm not sure if ill be able to make the game on mugen anymore unless i can get some help or examples :'(
Re: I need some SERIOUS help
#7  July 06, 2019, 07:04:22 pm
  • ******
  • Hedgehog Whisperer
  • Red Bull addict
    • Spain
    • xgargoyle.mgbr.net
you need to make your own gravity and landing states as long as you are using physics=N.
In other words, you will trigger a new state (landing) when the character reaches pos y>=0
XGargoyle: Battle posing since 1979
http://xgargoyle.mgbr.net
http://www.pandorabots.com/pandora/talk?botid=e71c0d43fe35093a  <-- Please click that link
http://paypal.me/XGargoyle  <-- Donations welcome!