| Character doesn't combo from specials | |
|
|
Author | Message |
---|
Mega_Man
Posts : 148 Join date : 2016-01-23
| Subject: Character doesn't combo from specials September 21st 2016, 8:46 pm | |
| For some reason my character will not combo its special moves into other moves. Normal or not. Keep in mind, I have the triggers for my combos almost the same as the others. - coding:
;Twister Fall [State -1, Twister Fall] type = ChangeState value = 1021 triggerall = command = "TF3" triggerall = command != "holddown" trigger1 = statetype != A trigger1 = ctrl trigger2 = stateno = 200 && movecontact || stateno = 230 && movecontact || stateno = 210 && movecontact || stateno = 400 && movecontact || stateno = 410 && movecontact || stateno = 240 && movecontact ;jump_x or jump_a
;Cruel Throw [State -1, Cruel Throw] type = ChangeState value = 1101 triggerall = command = "CT" triggerall = command != "holddown" trigger1 = statetype != A trigger1 = ctrl trigger2 = stateno = 200 && movecontact || stateno = 230 && movecontact || stateno = 210 && movecontact || stateno = 400 && movecontact || stateno = 410 || stateno = 1021 ;jump_x or jump_a
| |
|
| |
Werewood
Posts : 5691 Join date : 2014-08-11
| Subject: Re: Character doesn't combo from specials September 21st 2016, 9:18 pm | |
| Yo do your "TF3" and "CT" MUGEN Comamnds have any directional button "downward" assigned to them? Something like "command = ~D, DF, F, x" which has a directional button "downward" assignment, but you are having a "triggerall = command != "holddown"".......... | |
|
| |
Mega_Man
Posts : 148 Join date : 2016-01-23
| Subject: Re: Character doesn't combo from specials September 21st 2016, 10:11 pm | |
| They do. I am not sure why I use the hold down command since it doesn't really mean much unless I am dealing with normal attacks but I do it anyways. As for it interupting it's combo capabilities, I doubt it. For anything it should of interrupted the move entirely as in I can't use them at all, which isn't the case. | |
|
| |
Mega_Man
Posts : 148 Join date : 2016-01-23
| Subject: Re: Character doesn't combo from specials September 22nd 2016, 11:12 pm | |
| | |
|
| |
Mistah Jorge
Posts : 2356 Join date : 2013-07-04 Age : 26 Location : Portugal
| Subject: Re: Character doesn't combo from specials September 23rd 2016, 7:11 am | |
| It might have to do with logics Try putting parentisis in the code, it might really make a difference, like this (tell me if it worked): - Code:
;Twister Fall [State -1, Twister Fall] type = ChangeState value = 1021 triggerall = command = "TF3" triggerall = command != "holddown" trigger1 = statetype != A trigger1 = ctrl trigger2 = (stateno = 200 && movecontact) || (stateno = 230 && movecontact) || (stateno = 210 && movecontact) || (stateno = 400 && movecontact) || (stateno = 410 && movecontact) || (stateno = 240 && movecontact) ;jump_x or jump_a
;Cruel Throw [State -1, Cruel Throw] type = ChangeState value = 1101 triggerall = command = "CT" triggerall = command != "holddown" trigger1 = statetype != A trigger1 = ctrl trigger2 = (stateno = 200 && movecontact) || (stateno = 230 && movecontact) || (stateno = 210 && movecontact) || (stateno = 400 && movecontact) || stateno = 410 || stateno = 1021 ;jump_x or jump_a
| |
|
| |
Mistah Jorge
Posts : 2356 Join date : 2013-07-04 Age : 26 Location : Portugal
| Subject: Re: Character doesn't combo from specials September 24th 2016, 11:07 am | |
| hey. i'd like to know if you tried it or not | |
|
| |
Mega_Man
Posts : 148 Join date : 2016-01-23
| Subject: Re: Character doesn't combo from specials September 27th 2016, 10:32 am | |
| - Mistah Jorge wrote:
- hey. i'd like to know if you tried it or not
It did, thanks. Sorry it took me a while to respond. I mainly use Mugenarchive. | |
|
| |
Werewood
Posts : 5691 Join date : 2014-08-11
| Subject: Re: Character doesn't combo from specials September 28th 2016, 11:36 am | |
| >> Try putting parentisis in the code Very nice MUGEN tip, Mistah Jorge! I totally overlooked many "&&" and "||" in the same line.... | |
|
| |
Sponsored content
| Subject: Re: Character doesn't combo from specials | |
| |
|
| |
| Character doesn't combo from specials | |
|