-
Posts
2,004 -
Joined
-
Last visited
Everything posted by Demitri
-
LOL Someone noticed.
-
We need less touhous and more kancolle :3
-
Check this out http://mugenguild.com/forum/topics/damage-dampener-145091.0.html
-
i heard MF was acting up earlier
-
you're pretty damn good ._.
-
i wanna thank the academy
-
we're all wiiiiiiiiners
-
Why the quotation marks?
-
It's almost like a staple that every mugen site has the docs uploaded :)
-
He wants you to tell him the author of that Kaede If i remember right, it's not good to code movelists in chars because even though everything is paused, your character is still allowed to move hence why it isnt done often. You can probably get away with it in a fullgame since more control
-
Love it. Personal gripe with the pics, the name font kept changing x.x some are hard to read
-
thank you. are you aki himself?
-
yeah axfc has been pretty bad (at least for me) lately
-
i think they look at it like a "like" button. Though even then, who likes their own statuses?
-
The anims looks pretty fluid for the most part,but i'd suggest a few more transitional frames on some. Will be keeping a eye on this one.
-
I mean it'd depend on how you want the stance to change. Is it simply a button press that changes it, is it because the HP is low, etc. Like DarkFlare said, it'd required a variable if you wanted the stance to stay changed until whatever the above requirement would be changes. For example sake, let's say it was when your HP is low. _________________________________________________________________________________________________________________ Lets say this is state 0/the stand state [StateDef 0] type = S physics = S moveType = I velSet = 0,0 sprPriority = 0 [State 0, ChangeAnim] type = ChangeAnim trigger1 = Anim != 0 && Anim != 5 value = 0 [State 0, Dead] type = ChangeState trigger1 = !Alive value = 5050 To do what you want, you'll want something like this [StateDef 0] type = S physics = S moveType = I velSet = 0,0 sprPriority = 0 [State 0, ChangeAnim] type = ChangeAnim trigger1 = Anim != 0 && Anim != 5 value = Cond(Var(x)=1,a,b) [State 0, Dead] type = ChangeState trigger1 = !Alive value = 5050 X isn't a real variable just a placeholder for whatever number you'd want to use. a and b aren't real either, just placeholders for your anim numbers What this means is, if Var x is active/equal to 1, then use anim a for the stance. If it doesn't equal 1, then use anim b. Now you wanna define what this variable is [state 0, VarAdd] type = VarSet trigger1 = life <= 500 v = (x) value = 0 [state 0, VarAdd] type = VarSet trigger1 = life > 500 v = (x) value = 1 ------------------------------------------------------------------- So your code becomes [StateDef 0] type = S physics = S moveType = I velSet = 0,0 sprPriority = 0 [State 0, Alt.Stance] type = VarSet trigger1 = life <= 500 ;if your HP is less than or equal to 500 v = (x) ;you choose this number value = 0 [State 0, Normal Stance] type = VarSet trigger1 = life > 500 ;if your HP is more than 500 v = (x) ;you choose this number value = 1 [State 0, ChangeAnim] type = ChangeAnim trigger1 = Anim != 0 && Anim != 5 value = Cond(Var(x)=1,a,b) [State 0, Dead] type = ChangeState trigger1 = !Alive value = 5050 You can use other values but to make this simple, i used those. the code i wrote can prob be condensed a little because iirc just using Var(x) without the =1 will give the same result
-
100%!? That was fast.
-
Dengeki Bunko Fighting Climax Rentaro Satomi HD
Demitri replied to Hellzone's topic in [ CREATION LAB ]
Ah ok cool -
Dengeki Bunko Fighting Climax Rentaro Satomi HD
Demitri replied to Hellzone's topic in [ CREATION LAB ]
yay now my version doesnt need to feel accurate at all, can't wait to see how this turns out How did you go about his slash effects? -
Maybe you should get help from Chuchoryu in spriting Shredder, for multiple reasons.
-
ok fine only because im a nice guy :3
-
Post Ur Roster Picture & Roster Mugen Videos
Demitri replied to Yuyustars's topic in [ VIDEO SHARING ]
Although this version of Rebirth is outdated (Mid-Revamp Alpha), im slowly getting a roster together that I like.