Login x
User Name:
Password:
Social Links Facebook Twitter YouTube Steam RSS News Feeds

Members Online

»
0 Active | 6 Guests
Online:

LATEST FORUM THREADS

»
warfare
CoD4 Map + Mod Releases
Voting menu on maps
CoD+UO General
Hauling 911
CoDBO3 General

Forums

»

Welcome to the MODSonline.com forums. Looking for Frequently Asked Questions? Check out our FAQs section or search it out using the SEARCH link below. If you are new here, you may want to check out our rules and this great user's guide to the forums and the website.
For more mapping and modding information, see our Wiki: MODSonWiki.com

Jump To:
Forum: All Forums : Call of Duty: World at War
Category: CoDWW Scripting
Scripting and coding with Call of Duty: World at War.
Moderators: foyleman, Foxhound, Mystic, StrYdeR, batistablr, Welshy, DrBiggzz, supersword, playername, novemberdobby
Latest Posts
Subscribed Posts
Search
Restricted Access Topic is Locked subscribe
Author Topic: sound import
mester
General Member
Since: Feb 17, 2008
Posts: 4
Last: Jul 4, 2009
[view latest posts]
Level 0
Category: CoDWW Scripting
Posted: Saturday, Jul. 4, 2009 09:42 am
hi all.
im want to import sounds

according to this tut i tried everything
http://wiki.treyarch.com/wiki/CoDWaWSound

but the content of my custom.csv(soundalias) is missing ingame
why is that?wrong syntax inside the soundalias?or the problem is in the mod.csv?

just to make sure the mod.csv is for register the content of your mod right?

and the syntax is like this:
sound,custom,,all_mp
CONTENTTYPE,FILENAMEWITHOUTEXTENSION,DUNNO,FILTER

do i need to write all of my soundfile in to the mod.csv like this:
sound,sound/voiceovers/mp/us/cmds/us_cmd_followme,, ?

Share |
DemonSeed
General Member
Since: Apr 30, 2009
Posts: 1362
Last: Feb 19, 2018
[view latest posts]
Level 8
Im a fan of MODSonair
Category: CoDWW Scripting
Posted: Saturday, Jul. 4, 2009 10:29 am
mester writes...
Quote:
hi all.
im want to import sounds

according to this tut i tried everything
http://wiki.treyarch.com/wiki/CoDWaWSound

but the content of my custom.csv(soundalias) is missing ingame
why is that?wrong syntax inside the soundalias?or the problem is in the mod.csv?

just to make sure the mod.csv is for register the content of your mod right?

and the syntax is like this:
sound,custom,,all_mp
CONTENTTYPE,FILENAMEWITHOUTEXTENSION,DUNNO,FILTER

do i need to write all of my soundfile in to the mod.csv like this:
sound,sound/voiceovers/mp/us/cmds/us_cmd_followme,, ?



Short answer - no, you dont have to put all of that in your mod.csv. But what you do need to do is have the sound in RAW format - that is, you have to actually have the .WAV file in the right location in the raw directory.

Then you simply add:

sound,custom,,all_mp

if "custom" is the name of the soundalias file.

Also, make sure your soundalias file has the CODWaW header info at the top of the file:

Code:
name,sequence,file,platform,vol_min,vol_max,pitch_min,pitch_max,dist_min,dist_max,dist_reverb_max,limit_count,limit_type,entity_limit_count,entity_limit_type,bus,spatialized,type,probability,loop,masterslave,loadspec,reverb_falloff_curve,subtitle,compression,randomize_type,secondaryaliasname,chainaliasname,volumefalloffcurve,probability,startdelay,speakermap,reverb_send,lfe percentage,center percentage,platform,envelop_min,envelop_max,envelop percentage,occlusion_level,real_delay,distance_lpf,min_priority,max_priority,min_priority_threshold,max_priority_threshold,doppler


Otherwise the sound wont work.
Share |
mester
General Member
Since: Feb 17, 2008
Posts: 4
Last: Jul 4, 2009
[view latest posts]
Level 0
Category: CoDWW Scripting
Posted: Saturday, Jul. 4, 2009 11:33 am
ok thx its working, but a little buggy only the first played sound played correctly the 2nd 3rd is muted or just a half of it being played maybe something wrong in the soundalias?

like the TYPE header it can be primed loaded or streamed
wich one is the correct? whats the difference?



edited on Jul. 4, 2009 07:35 am by mester
Share |
DemonSeed
General Member
Since: Apr 30, 2009
Posts: 1362
Last: Feb 19, 2018
[view latest posts]
Level 8
Im a fan of MODSonair
Category: CoDWW Scripting
Posted: Saturday, Jul. 4, 2009 12:10 pm
mester writes...
Quote:
ok thx its working, but a little buggy only the first played sound played correctly the 2nd 3rd is muted or just a half of it being played maybe something wrong in the soundalias?

like the TYPE header it can be primed loaded or streamed
wich one is the correct? whats the difference?



edited on Jul. 4, 2009 07:35 am by mester


loaded means its compiled into your fastfile, streamed means it comes from an IWD. So, if you have the raw .WAV file, and that gets compiled into your mod.ff, you select loaded.

You will find playing around with settings to be a lot of trial and error. I found the best way is to find a sound in a stock soundalias file and copy paste that next to your own sound, and use it as a template (you can stop the copy/pasted line from being read by placing a # in front of it - it acts like a comment out //).

If your sound is only being played once, then muted, it might either be that you have 1 set under entity_limit_count, or that you have a loop sound which is not being looped (hard to tell without knowing the exact nature of the sound).
Share |
mester
General Member
Since: Feb 17, 2008
Posts: 4
Last: Jul 4, 2009
[view latest posts]
Level 0
Category: CoDWW Scripting
Posted: Saturday, Jul. 4, 2009 12:31 pm
DemonSeed writes...
Quote:
mester writes...
Quote:
ok thx its working, but a little buggy only the first played sound played correctly the 2nd 3rd is muted or just a half of it being played maybe something wrong in the soundalias?

like the TYPE header it can be primed loaded or streamed
wich one is the correct? whats the difference?


edited on Jul. 4, 2009 07:35 am by mester


loaded means its compiled into your fastfile, streamed means it comes from an IWD. So, if you have the raw .WAV file, and that gets compiled into your mod.ff, you select loaded.

You will find playing around with settings to be a lot of trial and error. I found the best way is to find a sound in a stock soundalias file and copy paste that next to your own sound, and use it as a template (you can stop the copy/pasted line from being read by placing a # in front of it - it acts like a comment out //).

If your sound is only being played once, then muted, it might either be that you have 1 set under entity_limit_count, or that you have a loop sound which is not being looped (hard to tell without knowing the exact nature of the sound).




thx, it was a lot easier back in cod1 :'( i dont like this .ff thing
i hope its only matter of time and i get used to it

is there a tool to modify the weapon files? pain in the ass writing all the attrs in notepad

edited on Jul. 4, 2009 08:33 am by mester
Share |
DemonSeed
General Member
Since: Apr 30, 2009
Posts: 1362
Last: Feb 19, 2018
[view latest posts]
Level 8
Im a fan of MODSonair
Category: CoDWW Scripting
Posted: Saturday, Jul. 4, 2009 01:12 pm
Quote:
is there a tool to modify the weapon files? pain in the ass writing all the attrs in notepad


Well, you can use Asset Manager, but I use this program:



Been using it since I started modding with COD2. You can download it here:

http://wwwnew.filefront.com/13923382/weapon_editor.zip

It was made by Chris_P (now Treyarch dev) for Merciless mod for COD1/UO, and is very easy to use.
Share |
mester
General Member
Since: Feb 17, 2008
Posts: 4
Last: Jul 4, 2009
[view latest posts]
Level 0
Category: CoDWW Scripting
Posted: Saturday, Jul. 4, 2009 01:24 pm
thank you youre awesome!
Share |
Restricted Access Topic is Locked subscribe
MODSonline.com Forums : Call of Duty: World at War : CoDWW Scripting

Latest Syndicated News

»
Codutility.com up and runn...
Nice, and there still using the logo and template for the screenshots, which...
Codutility.com up and runn...
dundy writes...Quote:Call of Duty modding and mapping is barly alive only a ...
Codutility.com up and runn...
Mystic writes...Quote:It seems to me the like the site is completely dead? ...
Codutility.com up and runn...
It seems to me the like the site is completely dead?

Partners & Friends

»