I’m trying to make it where the character does a combo like flow into the supers but does not actually combo. Is there away to do this with out changing the slidetime and pushback?
Ether, I want it where you can hit the opponent then do a quick super without it counting the hit. That way the opponent can hit or block the super but the game still will have a nice flowing motion
So, you want to be able to hit P2, but have it deal no damage at all and allow you to go straight into a super without p2 staying in a hitstate for any period of time?There is only one way to achieve this and it's a targetstate/drop at the start of your super states. I'm going to need more info to provide anything really sensible here. The problem is a bit... odd. I mean, do you EVER want the supers to combo or are they always meant to be blockable/cancelable?
Well I still want it to do damage just not any extra damage for comboing into the super. I want the super to combo only within itself but not combo from something like a kick or special. I want it to flow like it's going to combo but p2 still have a small moment to block and yes I always want them to be blockable before the super starts but not during.
Targetstate at the start of the super then. You can use that to put them in a custom hitstate and have them drop out of it instantly. type = targetstatetrigger1 = time = 0value = new hitstateIn the hitstate, leave it just about entirely blank and simply work withtype = selfstatetrigger1 = time = 0value = ifelse(statetype = A, 50,0)ctrl = 1That'll drop you back to stand/jump instantly and you'll have control again so can block or attack.I don't think this will work as well as you want though cos people will just hit you out of them.
um... that's confusing. So you want a super that cant be super canceled into? or linked into? Or do you want it to be canceled into, but the move wont connect?Why not just increase the move's start up time?
Cyanide said, January 24, 2012, 02:12:06 amTargetstate at the start of the super then. You can use that to put them in a custom hitstate and have them drop out of it instantly. type = targetstatetrigger1 = time = 0value = new hitstateIn the hitstate, leave it just about entirely blank and simply work withtype = selfstatetrigger1 = time = 0value = ifelse(statetype = A, 50,0)ctrl = 1That'll drop you back to stand/jump instantly and you'll have control again so can block or attack.I don't think this will work as well as you want though cos people will just hit you out of them.thanks i'll try that outEdit: It works thanks!Lost_Avenger said, January 24, 2012, 10:39:56 pmum... that's confusing. So you want a super that cant be super canceled into? or linked into? Or do you want it to be canceled into, but the move wont connect?Why not just increase the move's start up time? I tried to increase the start up time but it doesn’t work for all the moves and it’s a bit difficult getting all the moves to look like i need them to