Jump to content
  • 0

Pre - intro


qwerty

Question

as a newbe, i beg (of course i am requesting) anyone , give me a tutorial or video tutorial to make me

understand,

 

"how to add a pre-intro to a char"

(pre-intro = intro that come before "round one" . eg. - kfm breaking log)



i want to add 4 pre-intros to my char (using triggers i will differentiate their order to appear)



Again.....as...a...newbe....plz.....mercy

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

put this into your character

;---------------------------------------------------------------------------
; Pre-intro
[Statedef 190]
type = S
ctrl = 0
velset = 0,0

[State 190, 1]
type = ChangeAnim
trigger1 = SelfAnimExist(190)
value = 190

[State 190, 2] ;Go straight to intro.
type = ChangeState
trigger1 = Time = 0
value = 191

This is from the common1.cns located in the data folder.

 

This is where you set up your 4 special triggers for the intros.

In most cases no character has 190 for whatever reason and it goes to 191, which is KFM kicking wood.

So THIS is my example of your 4 triggers.

;---------------------------------------------------------------------------
; Pre-intro
[Statedef 190]
type = S
ctrl = 0
anim = 190
velset = 0,0

[State 190, 2] ;Go straight to Intro 1
type = ChangeState
trigger1 = enemy,name = "Ryu"
value = 191

[State 190, 2] ;Go straight to Intro 1
type = ChangeState
trigger1 = enemy,name = "Terry"
value = 192

[State 190, 2] ;Go straight to Intro 2
type = ChangeState
trigger1 = Random <= 249
value = 193

[State 190, 2] ;Go straight to Intro 3
type = ChangeState
trigger1 = Random >= 250 && random <=499
value = 194

not the best of examples.

 

but if you put this in your pre-intro it SHOULD work.

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...