So Maxime's spring jump is working correctly as of now. When it connects, it snaps him to a position where the opponent's head should vaguely be.However, I'm only using a set value for this. Against taller characters, he still looks like he's jumping off air in front of them.Is there any way for me to return the exact Y value of the opponent's height?
Options[mcode]targetbind[/mcode]pos = 0,something,headHead being the important one, that binds you to their head.pos as set in the constants.Most people set head.pos on 5000,0, if you're using a custom state, i suggest that sprite.
Wow, it works when you don't put any spaces. How bizzare.Anyway, thank you. I tried that before, but because I was setting out as "0, -30, head" it wasn't reading it.
Mugen coding is crazy like try to do this.type=nothitbytrigger=1value= APthat doesn't work.then try thistype=nothitbytrigger=1value= ,APi don't remember anywhere in the docs which says it has to be like that, unless i skipped something?, alot of other silly things exist i discovered but it's no need to point them out.
Quotei don't remember anywhere in the docs which says it has to be like that, unless i skipped something?http://mugenguild.com/docs/sctrls.html#NotHitBy said:Required parameters: value = attr_string OR value2 = attr_string Only one of the above parameters can be specified. attr_string should be a standard hit attribute string....Example: ; Not hit by anything trigger1 = 1 type = NotHitBy value = SCA ; Not hit by normal attacks, and all projectiles trigger1 = 1 type = NotHitBy value = , NA, APhttp://mugenguild.com/docs/sctrls.html#HitDef said: attr = hit_attribute (string) This is the attribute of the attack. It is used to determine if the attack can hit P2. It has the format: attr = arg1, arg2 Where: - arg1 is either "S", "C" or "A". Similar to "statetype" for the StateDef, this says whether the attack is a standing, crouching, or aerial attack. - arg2 is a 2-character string. The first character is either "N" for "normal", "S" for "special", or "H" for "hyper" (or "super", as it is commonly known). The second character must be either "A" for "attack" (a normal hit attack), "T" for "throw", or "P" for projectile.It says it takes two arguments. The first being for SCA and the second being for the type of attack. You can't put the second argument where the first is supposed to be and the example the NotHitBy gives points out you can skip the first argument but the second still has to be in its correct place.Quoteit works when you don't put any spaces.Most code compilers simplify the code as much as it can ; this includes removing all spaces. So you can put none as you wish