Jump to content
  • 0

Beterhans' character issue.


Cook4251

Question

8 answers to this question

Recommended Posts

  • 0

I think a MUGEN state controller is missing in this normal Ryu's States\NormalRyu.st file:

 

Near the bottom of the NormalRyu.st file:

 

[state 5900, modevar]
type = varset
trigger1 = 1
var(1) = 1
[state 5900, End]
type = changestate
trigger1 = !time
value = ifelse(roundno = 1, 190, 0)

 

Try to add the missing VarSet MUGEN state controller for the MUGEN variable #38 var(38):

[state 5900, modevar]
type = varset
trigger1 = 1
var(1) = 1

 

[state 5900, dizzy threshold]  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; added this state back to here!
type = varset             
trigger1 = !time
var(38) = IfElse(var(1)=3,150,IfElse(var(1)=2,100,120))

 

[state 5900, End]
type = changestate
trigger1 = !time
value = ifelse(roundno = 1, 190, 0)

 

After adding this missing VarSet MUGEN state controller back to this normal Ryu's States\NormalRyu.st file, he becomes "normal" and that repeating dizzy state Helper noise shall be gone.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...