Newagemugen
Newagemugen
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Newagemugen

We're The Best At What We Do - Runnin' The Mugen Underground Since 2010. Underground M.U.G.E.N community specializing in advanced Quality Mugen content, Fanart, Graphics, Fighting Games & more.

You are not connected. Please login or register

Battle Damage characters

3 posters

Go down  Message [Page 1 of 1]

1Battle Damage characters Empty Battle Damage characters Mon Mar 28, 2022 9:57 pm

creativeprecursor

creativeprecursor

Battle Damage characters 49283912532_cb9be7ddac_o
Kindred Spirit (Gold)
Liked 30 Forum posts
★★Pot Of Prosperity★★
Commissioned/Donated to support Newagemugen
Apple Of The Eye (Platinum)
Recieved 60 or more likes from other Members
Lord Of War (Gold)
Obtained The Highest Tier 3 Warlord Class Rank
Survivor (Gold)
Survived 3 Inactive Account Auto-purges
Published To Perfection (Gold)
Created 30 or more Unique Topics

Has anybody made any characters that have battle damage to them? Or is this even possible to create with in a character?

2Battle Damage characters Empty Re: Battle Damage characters Tue Mar 29, 2022 8:35 am

Vermilion Spy

Vermilion Spy

Battle Damage characters 51937087073_50975dcb2f_o
卍♆★Divine Overseer★♆卍
Verified Senior Forum support/assistant/curator
The Greatest Showman (Platinum)
Created 40 or more Unique Topics
Survivor (Platinum)
Survived 6 Inactive Account Auto-purges
Apple Of The Eye (Platinum)
Recieved 60 or more likes from other Members
Lord Of War (Gold)
Obtained The Highest Tier 3 Warlord Class Rank
Kindred Spirit (Gold)
Liked 30 Forum posts

It is definitely possible.
No particular characters come to mind, but it is definitely possible.

I'm not an expert on niche coding for these type of things but I imagine you would use life triggers such as
trigger1 = life <= 800

and use it for adding a transformation state.
If I recall though this used to cause issues during throw states.
here is an old quoted reply for a similar question that was asked in the past:


unknown creator wrote:
Say you have an animation. For example, the walk animation. You give it an animation number - for example, 20.
Now, you have the "transformed" (or damaged, or whatever) version of that animation. Let's say you give it the number 10020.

So, in normal mode, you set up a variable (of any number you want). For the normal mode, this variable has the value 0.
Now, you transform. when you have enough power, you use a given command, you go into a given state. In that state, you set your variable to 1.
Now, in statedef -2, all you have to do is change your current animation for 10000+anim when you enter any state (at time=0) if the variable has the value 1. With the earlier example, this will give 10000+20 = 10020 which will display the transformed animation.

So as you see, you just have to set up the animation numbers so that the changeanim will turn the default animation into the transformed animation simply by adding 10000 to the animation number.
The same works for battle damage, only the trigger in the changeanim is different - instead of checking for a variable, you just look if your life is below a certain value.

The problem that makes it not fully work outside of a full game is for grabs. When an opponent grabs you, usually he puts you in a custom state, and specifies one of his own animations so that your character is displayed correctly according to his throw. Of course, that animation uses the required sprites - that's why they're required to begin with.
In a normal Mugen, you have no way to know what sprites are used in such a custom animation, simply because it's not your own animation and you can't look at what sprites the opponent uses. So you can't change it. That's why no transformation or character change or battle damage can work fully, properly.
But in a full game, you know all the animations of all the characters in the game. So you can make a transformed or battle-damaged version of each of these special animations. And you can stick with the same trick as above.


________________________________________________________________________________________________________________________________________________________________________
Battle Damage characters 39750191021_f709bd611c_o

3Battle Damage characters Empty Re: Battle Damage characters Tue Mar 29, 2022 12:07 pm

NAMTron

NAMTron

Battle Damage characters RjBqV68
卍♆★Divine Overseer★♆卍
Verified Senior Forum support/assistant/curator
The Greatest Showman (Platinum)
Created 40 or more Unique Topics
Survivor (Platinum)
Survived 6 Inactive Account Auto-purges
Lord Of War (Gold)
Obtained The Highest Tier 3 Warlord Class Rank
Idol Master (Gold)
Recieved 40 or more likes from other Members
Kindred Spirit (Gold)
Liked 30 Forum posts

creativeprecursor wrote:Has anybody made any characters that have battle damage to them? Or is this even possible to create with in a character?

moved topic to mugen help section.
please only post non- mugen related topics in general discussion thread


________________________________________________________________________________________________________________________________________________________________________
Battle Damage characters 37790345872_ebfeb58d10_o

4Battle Damage characters Empty Re: Battle Damage characters Tue Mar 29, 2022 6:12 pm

creativeprecursor

creativeprecursor

Battle Damage characters 49283912532_cb9be7ddac_o
Kindred Spirit (Gold)
Liked 30 Forum posts
★★Pot Of Prosperity★★
Commissioned/Donated to support Newagemugen
Apple Of The Eye (Platinum)
Recieved 60 or more likes from other Members
Lord Of War (Gold)
Obtained The Highest Tier 3 Warlord Class Rank
Survivor (Gold)
Survived 3 Inactive Account Auto-purges
Published To Perfection (Gold)
Created 30 or more Unique Topics

Vermilion Spy wrote:It is definitely possible.
No particular characters come to mind, but it is definitely possible.

I'm not an expert on niche coding for these type of things but I imagine you would use life triggers such as
trigger1 = life <= 800

and use it for adding a transformation state.
If I recall though this used to cause issues during throw states.
here is an old quoted reply for a similar question that was asked in the past:


unknown creator wrote:
Say you have an animation. For example, the walk animation. You give it an animation number - for example, 20.
Now, you have the "transformed" (or damaged, or whatever) version of that animation. Let's say you give it the number 10020.

So, in normal mode, you set up a variable (of any number you want). For the normal mode, this variable has the value 0.
Now, you transform. when you have enough power, you use a given command, you go into a given state. In that state, you set your variable to 1.
Now, in statedef -2, all you have to do is change your current animation for 10000+anim when you enter any state (at time=0) if the variable has the value 1. With the earlier example, this will give 10000+20 = 10020 which will display the transformed animation.

So as you see, you just have to set up the animation numbers so that the changeanim will turn the default animation into the transformed animation simply by adding 10000 to the animation number.
The same works for battle damage, only the trigger in the changeanim is different - instead of checking for a variable, you just look if your life is below a certain value.

The problem that makes it not fully work outside of a full game is for grabs. When an opponent grabs you, usually he puts you in a custom state, and specifies one of his own animations so that your character is displayed correctly according to his throw. Of course, that animation uses the required sprites - that's why they're required to begin with.
In a normal Mugen, you have no way to know what sprites are used in such a custom animation, simply because it's not your own animation and you can't look at what sprites the opponent uses. So you can't change it. That's why no transformation or character change or battle damage can work fully, properly.
But in a full game, you know all the animations of all the characters in the game. So you can make a transformed or battle-damaged version of each of these special animations. And you can stick with the same trick as above.

I wish i was as technical as this and thank you for the info. Something i always thought of! It would be awesome even if someone threw a a lever 3 super and burnt there clothes or something.

Thanks a bunch!

Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum