When i create a new character in wow and enter the game,a movie section would be shown,
how could i bypass the movie without pressing ESC key?
i mean is there any method like lua function or memory writing ?
When i create a new character in wow and enter the game,a movie section would be shown,
how could i bypass the movie without pressing ESC key?
i mean is there any method like lua function or memory writing ?
Why on earth? there should be console vars related to this. Check for info on config.WTF
movie and expansionMovie in config.wtf are your best bet. Try setting them both to 0.
For reference: Console variables - WoWWiki - Your guide to the World of Warcraft
If you want to do it at run-time then you could try the CVars above but use memory-writing to modify them.
These "movies" have nothing to do with the CVars.
They are read from CinematicSequences.dbc - WoW.Dev Wiki while the IDs for that one are sent from the server on entering the world.
You may just delete the entries to stop it playing them or null out the packet handler playing cutscenes.
thanks for this
(lua) - World of Warcraft API - WoWWiki - Your guide to the World of Warcraft
if InCinematic() then
StopCinematic()
end
Cheers