Jump to content

Home

a few more cutscene questions...


lukeskywalker1

Recommended Posts

Posted

Well, ive learned a lot so far... at least i think its a lot...but ive got a few more questions:

 

1) How can i get an NPC to walk (main question) i dont have a clue.... is it just the walking animations, and turning animations?

 

2) How do i get them to use force? (i think its just animations right?)

 

3) How can i make stuff fall, like in the end of return of the jedi, when vader threw his saber and that little bridge like thing fell?

 

I think thats all. Im really sorry, because i know this is a lot...

 

thanks a lot!!!

 

well, im ganna keep looking through the scripts, but i know ill need help with making an NPC walk around...

 

-lukeskywalker1

Posted

OK, you know you can get your name changed if you want, but it costs points, if you dont have enough i could give you some, i got plenty, and i dont need anything...

 

thanks for the link, im checking it now!!

Posted

Well, i tried to 'improvise' tell me if this will work pls...

prolly not...

  Quote

//(BHVD)

 

affect ( "storm1", /*@AFFECT_TYPE*/ FLUSH )

{

 

task ( "walk1" )

{

set ( /*@SET_TYPES*/ "SET_NAVGOAL", "nav2" );

wait ( 200.000 );

do ( "walk1" );

wait ( "walk1" );

}

 

}

 

Posted

It wont work. :)

 

You must move the do("walk1") and wait("walk1") outside of the task (place after it). And you could use a simple dowait("walk1") instead.

 

Plus you may want to move the wait(200.000) too.

Posted

Ok, ive gotten walking, and running to work. Its easy now... I did it like this:

 

  Quote

 

//(BHVD)

 

affect ( "strooper1", /*@AFFECT_TYPE*/ FLUSH )

{

 

task ( "walk1" )

{

set ( /*@SET_TYPES*/ "SET_WALKING", /*@BOOL_TYPES*/ "true" );

set ( /*@SET_TYPES*/ "SET_NAVGOAL", "strooper" );

sound ( /*@CHANNELS*/ CHAN_VOICE, "sound/chars/st3/misc/31st3032.mp3" );

}

 

do ( "walk1" );

}

 

 

 

easy enough, now that i know how to do it.

 

 

And im ganna review the SP scripts to c how thye used the force in the game, during a cutscene, like when kyle was choking tavion. And that falling thing should be in one of the scripts too.

 

Thanks!!!

Posted
  Quote
Originally posted by lukeskywalker1

i got the 1st part :

 

( <set_types> "set bahavior state", but not the 2nd part:

 

<BSTATE_STRINGS> "BS_WALK" )

 

how did they get that in, i didnt see it... or am i not looking right??? Or did they just type it in??

 

-lukeskywalker1

 

Bring up set behavoir state, then double click on that set command and press 'Re-evaluate' and the various behavoir states should appear in a drop down box.

Posted

I never got that behavior thingy right, but i got them to walk, lots of people, maybe ill upload the whole thing, it looks really cool! This is like my 4th day adding to it... its just a huge, huge cutscene. :)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...