.sfx lines for atrt

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
YaNkFaN
Field Commander
Field Commander
Posts: 943
Joined: Sat Dec 13, 2008 8:17 am

.sfx lines for atrt

Post by YaNkFaN »

does anyone know the .sfx lines for the AT-RT I have the right walker sounds but the weapon sounds are stumping me I can't seem to find them in the fel1_cw.sfx or the myg1_cw.sfx
AQT
Gametoast Staff
Gametoast Staff
Posts: 4910
Joined: Sat Nov 03, 2007 4:55 pm
Location: SoCal, USA

Re: .sfx lines for atrt

Post by AQT »

Aren't the weapon sounds just turret weapon sounds? The laser sound is the same as the generic turrets while mortar sound is the same as the Concussion turrets, right? I can't check at the moment.
YaNkFaN
Field Commander
Field Commander
Posts: 943
Joined: Sat Dec 13, 2008 8:17 am

Re: .sfx lines for atrt

Post by YaNkFaN »

the souds are named differently than the turrets but that does make sense hmm i'll check to see if that works
User avatar
Maveritchell
Jedi Admin
Jedi Admin
Posts: 7366
Joined: Mon Aug 21, 2006 11:03 pm

Re: .sfx lines for atrt

Post by Maveritchell »

YaNkFaN wrote:does anyone know the .sfx lines for the AT-RT I have the right walker sounds but the weapon sounds are stumping me I can't seem to find them in the fel1_cw.sfx or the myg1_cw.sfx
They use the at-walker sounds and then:
rep_weap_walk_atrt_cannon_head_fire
rep_weap_walk_atrt_cannon_chin_fire
which are these sampled sounds:
// Primary Fire
SoundProperties()
{
Name("rep_weap_walk_atrt_cannon_chin_fire");
Group("weapons");
Pitch(1.15);
Inherit("veh_weapon_template");
SampleList()
{
Sample("com_weap_turret_fire_small", 1.0);
}
}

// Secondary Fire
SoundProperties()
{
Name("rep_weap_walk_atrt_cannon_head_fire");
Group("weapons");
#ifplatform ps2 xbox
Gain(1.0)
#endifplatform ps2 xbox
Pitch(1.15);
Inherit("veh_weapon_template");
SampleList()
{
Sample("com_mortar_launcher_fire", 1.0);
}
}
AQT is correct here.
Post Reply