|
|
Re: how would i incorperate cutscenes into my game?
[Re: mikaldinho]
#311155
02/18/10 17:58
02/18/10 17:58
|
Joined: Jan 2006
Posts: 2,157 Connecticut, USA
Blink

Expert
|

Expert
Joined: Jan 2006
Posts: 2,157
Connecticut, USA
|
use the template cutscene script, its easy to use. or look at the aum and search.
My Famous Quotes: "Hip hop is like a virus, infecting everyone and everything around it. Every form of media has some way,shape or form, assimilated hip hop into it." It has also mutated into other strains like, trip hop, house, rap, gangster, and conscious forms. Once you are infected with it, its with you for life."
|
|
|
Re: how would i incorperate cutscenes into my game?
[Re: Blink]
#311162
02/18/10 18:13
02/18/10 18:13
|
Joined: Jan 2006
Posts: 2,157 Connecticut, USA
Blink

Expert
|

Expert
Joined: Jan 2006
Posts: 2,157
Connecticut, USA
|
this one is from AUM 39:
////////////////////////////////////////////////////////////////////////////////////////////////////////////////
string level2_wmb = <level2.wmb>;
action level_changer
{
while (vec_dist (my.x, player.x) > 100) {wait (1);} // wait until the player has come close enough
my = null; // keep the function running even after level_load
level_load (level2_wmb);
wait (3); // wait until the level is loaded
media_play ("cutscene.avi", null, 100); // now play the movie // where “cutscene.avi” is your Avi file
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
My Famous Quotes: "Hip hop is like a virus, infecting everyone and everything around it. Every form of media has some way,shape or form, assimilated hip hop into it." It has also mutated into other strains like, trip hop, house, rap, gangster, and conscious forms. Once you are infected with it, its with you for life."
|
|
|
|