2 questions.

Post everything from general questions, to modding questions, to map WIPs to releases. (SWBF1 only)

Moderator: Moderators

Post Reply
Ty294
Sergeant Major
Sergeant Major
Posts: 247
Joined: Thu Mar 12, 2009 10:28 pm
Projects :: Various
Location: Minnesota

2 questions.

Post by Ty294 »

I just need to know two simple things.

1st. What's the sound file for the flame sound? Like what's used for flame throwers?

2nd. How do you get a thrown object to spin? Like the throwing swords in 'Theta Squad: Objective One".
AQT
Gametoast Staff
Gametoast Staff
Posts: 4910
Joined: Sat Nov 03, 2007 4:55 pm
Location: SoCal, USA

Re: 2 questions.

Post by AQT »

Ty294 wrote:1st. What's the sound file for the flame sound? Like what's used for flame throwers?
Try the jetpack sound perhaps.
breakdown
Lance Corporal
Posts: 91
Joined: Thu Oct 16, 2008 6:44 pm
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set

Re: 2 questions.

Post by breakdown »

Ty294 wrote:I just need to know two simple things.

2nd. How do you get a thrown object to spin? Like the throwing swords in 'Theta Squad: Objective One".
Actually, it's not spinning at all, I tried to see if I could make it spin, but I couldn't really find a way, so I just made it go fast, which may give the illusion of it spinning ;)
MileHighGuy
Jedi
Jedi
Posts: 1194
Joined: Fri Dec 19, 2008 7:58 pm

Re: 2 questions.

Post by MileHighGuy »

for #2 u could make a spinning effect involving the msh u want
Ty294
Sergeant Major
Sergeant Major
Posts: 247
Joined: Thu Mar 12, 2009 10:28 pm
Projects :: Various
Location: Minnesota

Re: 2 questions.

Post by Ty294 »

Breakdown, what sound effect did you use for the flamethrower in that map?
breakdown
Lance Corporal
Posts: 91
Joined: Thu Oct 16, 2008 6:44 pm
Projects :: No Mod project currently.
Games I'm Playing :: I have not listed any games yet
xbox live or psn: No gamertag set

Re: 2 questions.

Post by breakdown »

"OrdnanceSound = "com_amb_fire""

That was under the ordnance file, if it helps
Ty294
Sergeant Major
Sergeant Major
Posts: 247
Joined: Thu Mar 12, 2009 10:28 pm
Projects :: Various
Location: Minnesota

Re: 2 questions.

Post by Ty294 »

Ok, rather then start a new topic I'll just continue to use this one.

Ok here's another problem: I've been able to add a flyby movie to my map; however, I can't seem to get a second video clip added, it only plays just the first one.

// transition times used by all movies

MovieProperties()
{
Name("flythrough_template");
FadeInTime(1.0);
FadeOutTime(1.0);
}


// Level fly throughs...

// MOD1
MovieProperties()
{
Name("TRMfly");
Inherit("flythrough_template");
Movie("TRM");
SegmentList()
{
Segment("TRMfly", 1.0, -1);
Segment("TRMfly2", 1.0, -1);
}
}


Can someone show me the proper way to do this?
User avatar
Jendo7
Sith
Sith
Posts: 1304
Joined: Wed Apr 01, 2009 6:37 pm
Location: Cambridge, England.
Contact:

Re: 2 questions.

Post by Jendo7 »

This is how I set mine up:

// transition times used by all movies

MovieProperties()
{
Name("flythrough_template");
FadeInTime(1.0);
FadeOutTime(1.0);
}


// Level fly throughs...
// bes3

MovieProperties()
{
Name("bes3fly");
Inherit("flythrough_template");
Movie("bes3");
SegmentList()
{
Segment("bes3fly", 1.0, -1);
}
}

Basically you don't add TRMfly2

As long as you record two short clips named TRMfly1 and TRMfly2 etc or how ever many you want and then bink them with the rad tools it will create one long clip called TRMfly. TRMfly is all you need in the segment list.
Post Reply