Modcraft - The community dedicated to quality WoW modding!

Wrath of the Lich King Modding => Serverside Modding => Topic started by: ladiszlai on September 22, 2015, 07:47:22 pm

Title: [Solved] C++ Starting Movie
Post by: ladiszlai on September 22, 2015, 07:47:22 pm
Hello , everyone

In cpp script I would like to make this :

When the boss dies then play a movie for me. (for example 16 = FotLK)

I tryed with this :

Player->SendMovieStart(16);

But the visual give me error, I don't know why...

Someone could please help me ?
Title: Re: C++ Starting Movie
Post by: ladiszlai on September 23, 2015, 01:55:36 pm
Nobody know c++ in this website ? :(
Title: Re: C++ Starting Movie
Post by: Ascathos on September 23, 2015, 01:59:56 pm
Some do.

        void SendCinematicStart(uint32 CinematicSequenceId);

I do not believe it works that easily, though.
Title: Re: C++ Starting Movie
Post by: schlumpf on September 23, 2015, 02:46:11 pm
Quote from: "ladiszlai"
Nobody know c++ in this website ? :(
This is not a C++ question, but an emulator specific one. As a start, one would need to know what emulator you are using.

As a hint regardless of emulator, movies and cinematic sequences are different things.

Have you tried looking in the Lich King boss script? That should start a movie.
Title: Re: C++ Starting Movie
Post by: ladiszlai on September 23, 2015, 04:06:14 pm
Solved