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


Welcome!!! - Bienvenidos!!! - ( We hope you will get involved in the MMV Community which is dedicated to having fun with Mugen ) - Bienvenidos!!! - Welcome!!!
 
PortalHomeFAQMemberlistLatest imagesUsergroupsSearchRegisterComic WIP TrackerDownloadsLog inChat
Website Navigation Help
Translate the Website
Log in
Username:
Password:
Log in automatically: 
:: I forgot my password
Latest topics
» Classic VS : Balrog
A conflict between a normal attack and charged version of it Emptyby ELECTRO Today at 3:54 pm

» My Goodbye to Mugen & Ikemen creation
A conflict between a normal attack and charged version of it Emptyby gartanham Today at 10:58 am

» My Youtube Mugen (Pseudoingles)
A conflict between a normal attack and charged version of it Emptyby pseudoingles Yesterday at 9:47 pm

» Akira Yuki Release
A conflict between a normal attack and charged version of it Emptyby Nexus Gaming Yesterday at 1:18 pm

Special Features at MMV




Chat on MMV w/ Discord

Video Content Creation Reference
Search
 
 

Display results as :
 
Rechercher Advanced Search

 

 A conflict between a normal attack and charged version of it

Go down 
2 posters
AuthorMessage
Minun

Minun


Posts : 142
Join date : 2015-03-08

A conflict between a normal attack and charged version of it Empty
PostSubject: A conflict between a normal attack and charged version of it   A conflict between a normal attack and charged version of it EmptyJune 12th 2015, 9:21 pm

Apparently, only one attack with the same button combination concept can be used.
Both of these commands have F and X as their button combinations however one you have to hold and one you don't have to.
; Stand Strong Punch
[State -1, Neutral A Fwd]
type = ChangeState
value = 2500
triggerall = command = "hold_x" && command = "fwd" ||  command = "holdback"
trigger1 = statetype = S
trigger1 = ctrl

You need to tap Forward and X at the same time to use it. However It doesn't work. Instead I use it like a regular forward attack where you press X while moving.

;---------------------------------------------------------------------------
; Stand Strong Punch
[State -1, Neutral A Fwd]
type = ChangeState
value = 250
triggerall = command = "x"
triggerall = stateno = 20
trigger1 = statetype = S
trigger1 = ctrl

This doesn't work either. It is supposed to play once you are moving (Walk animation playing) and you press X while you are at it.
Back to top Go down
Werewood

Werewood


Posts : 5691
Join date : 2014-08-11

A conflict between a normal attack and charged version of it Empty
PostSubject: Re: A conflict between a normal attack and charged version of it   A conflict between a normal attack and charged version of it EmptyJune 13th 2015, 11:50 am

It might be easier to do so directly inside a StateDef, something like this:

Disable the ChangeState to StateDef 2500 in the CMD file, then,

In your StateDef 250:

[State 250, Neutral A Fwd]
type = ChangeState
trigger1 = command = "hold_x"
value = 2500
Back to top Go down
https://onedrive.live.com/?cid=7DB65F02B0BBD12E
Minun

Minun


Posts : 142
Join date : 2015-03-08

A conflict between a normal attack and charged version of it Empty
PostSubject: Re: A conflict between a normal attack and charged version of it   A conflict between a normal attack and charged version of it EmptyJune 13th 2015, 12:14 pm

Doesn't work. Now it does the charged attack no matter what or how long I have been pressing fwd.
Back to top Go down
Werewood

Werewood


Posts : 5691
Join date : 2014-08-11

A conflict between a normal attack and charged version of it Empty
PostSubject: Re: A conflict between a normal attack and charged version of it   A conflict between a normal attack and charged version of it EmptyJune 13th 2015, 12:50 pm

Minun wrote:
Doesn't work. Now it does the charged attack no matter what or how long I have been pressing fwd.

Hmmmmmmm........might be the other way around?

Something like this:

Disable the ChangeState to StateDef 250 in the CMD file, then,

In your StateDef 2500:

[State 2500, Neutral A Fwd]
type = ChangeState
trigger1 = command != "hold_x"
value = 250
Back to top Go down
https://onedrive.live.com/?cid=7DB65F02B0BBD12E
Minun

Minun


Posts : 142
Join date : 2015-03-08

A conflict between a normal attack and charged version of it Empty
PostSubject: Re: A conflict between a normal attack and charged version of it   A conflict between a normal attack and charged version of it EmptyJune 13th 2015, 2:09 pm

(I posted it on the wrong topic.)

You are getting there. It works but I can't really use it like an attack.

Maybe this code will help you. Basically it determines how long the player has held the charge.


[State 0, 25% charge]
type = ChangeState
trigger1= time < 25
trigger1 = command != "hold_x" && command = "holdfwd"
value = 2501
ctrl = 0

[State 0, 50% charge]
type = ChangeState
trigger1= time > 50 && time < 26
trigger1 = command != "hold_x" && command != "holdfwd"
value = 2502
ctrl = 0

[State 0, 75% charge]
type = ChangeState
trigger1= time > 75 && time < 100
trigger1 = command != "hold_x" && command != "holdfwd"
value = 2503
ctrl = 0


[State 0, 100% charge]
type = ChangeState
trigger1 = time > 100
trigger1 = command = "hold_x" && command = "holdfwd"
value = 2504
ctrl = 0
Back to top Go down
Minun

Minun


Posts : 142
Join date : 2015-03-08

A conflict between a normal attack and charged version of it Empty
PostSubject: Re: A conflict between a normal attack and charged version of it   A conflict between a normal attack and charged version of it EmptyJune 13th 2015, 3:17 pm

Hi
Back to top Go down
Werewood

Werewood


Posts : 5691
Join date : 2014-08-11

A conflict between a normal attack and charged version of it Empty
PostSubject: Re: A conflict between a normal attack and charged version of it   A conflict between a normal attack and charged version of it EmptyJune 13th 2015, 4:46 pm

I would like to see how you defined "hold_x" in your CMD file........... cyclops
Back to top Go down
https://onedrive.live.com/?cid=7DB65F02B0BBD12E
Minun

Minun


Posts : 142
Join date : 2015-03-08

A conflict between a normal attack and charged version of it Empty
PostSubject: Re: A conflict between a normal attack and charged version of it   A conflict between a normal attack and charged version of it EmptyJune 13th 2015, 5:22 pm

borewood2013 wrote:
I would like to see how you defined "hold_x" in your CMD file........... cyclops


[Command]
name = "hold_x"
command = /x
time = 35

Back to top Go down
Sponsored content





A conflict between a normal attack and charged version of it Empty
PostSubject: Re: A conflict between a normal attack and charged version of it   A conflict between a normal attack and charged version of it Empty

Back to top Go down
 
A conflict between a normal attack and charged version of it
Back to top 
Page 1 of 1
 Similar topics
-
» Legacy (Normal Portraits Version) by NoZ Released (05/17/2015)
» MORTAL KOMBAT CAPCOM STYLE FOR CHRISTMAS: Scorpion New Stand, Sub-Zero New Version, Jax Capcom Style, Kano Beta Version and Quan Chi Beta Version
» Mugen lifebar by sysn [edited by RAMON GARCIA] [640x480] [1.0 or 1.1] VERSION 2 2016 + old version
» MICA FINAL VERSION GET AN HD Version makeover Update 12/16/2019
» How to convert normal pictures into portraits

Permissions in this forum:You cannot reply to topics in this forum
The Mugen Multiverse :: Mugen Related :: Mugen Help-
Jump to: