Mygeeto vo follow me commands missing.

In this forum you will find and post information regarding the modding of Star Wars Battlefront 2. DO NOT POST MOD IDEAS/REQUESTS.

Moderator: Moderators

Post Reply
User avatar
Jendo7
Sith
Sith
Posts: 1304
Joined: Wed Apr 01, 2009 6:37 pm
Location: Cambridge, England.
Contact:

Mygeeto vo follow me commands missing.

Post by Jendo7 »

The voice commands for follow me etc, were missing from my map in gcw conquest, I realized it was because I was using the mygeeto GCW lua sounds. These have also been left out of the official Mygeeto map for the GCW era, and the f4 command has no corrosponding voice over. If anyone uses the Mygeeto lua GCW era for music and sounds, I suggest you take the first sound section from yavin or any other map otherwise the f4 command will be silent.

The first part of the GCW Mygeeto lua sound section is below:

Code: Select all

musicStream = OpenAudioStream("sound\\global.lvl", "all_unit_vo_slow")
    AudioStreamAppendSegments("sound\\global.lvl", "imp_unit_vo_slow", musicStream)
    AudioStreamAppendSegments("sound\\global.lvl", "global_vo_slow", musicStream) 
This should be replaced by the below section, for the f4 command to have a corresponding vo:

Code: Select all

voiceSlow = OpenAudioStream("sound\\global.lvl", "all_unit_vo_slow")
    AudioStreamAppendSegments("sound\\global.lvl", "imp_unit_vo_slow", voiceSlow)
    AudioStreamAppendSegments("sound\\global.lvl", "global_vo_slow", voiceSlow)
    
    voiceQuick = OpenAudioStream("sound\\global.lvl",  "all_unit_vo_quick")
    AudioStreamAppendSegments("sound\\global.lvl",  "imp_unit_vo_quick", voiceQuick) 
Post Reply