Art of War Central
View in iTunes
Please help us to raise in the ranks of podcasting and subscribe to our itunes feed using the link above.
The next MODSonair show will air LIVE on:
03/21/2010 12:03 EDT

Time remaining:
We Dontated to PixelEquity
"Mod or modification is a term generally applied to PC games, especially first-person shooters, RPGs and real-time strategy games." 2
 
Site News   |   Aggregated News   |   Forums   |   Tutorials   |   Downloads   |   Projects   |   Weblinks
Latest Forum Threads 
CoD4 General.. Posts: (88) Views: (111) by _INSANE_
CoD4 MP Mapping.. Posts: (7) Views: (98) by DemonSeed
CoDWW MP Mapping.. Posts: (3) Views: (36) by DemonSeed
L4D2 Mapping.. Posts: (1) Views: (6) by Eladd
CoD4 MP Mapping.. Posts: (29) Views: (478) by {UST}Hogan
General Gaming.. Posts: (1) Views: (19) by Cerebral_Assassin
General Gaming.. Posts: (1) Views: (19) by Cerebral_Assassin
CoD2 MP Mapping.. Posts: (8) Views: (78) by PanZerReBorN
CoDWW Map + Mod .. Posts: (35) Views: (319) by dundy
CoD2 MP Mapping.. Posts: (4) Views: (57) by liltc64
Back to Home Page
MODSCON 2010 L4D2 Contest
Dr. Nano Free for the iPhone and iPod Touch
 
Forums
MODSonline.com 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, StrYdeR, techno2sl, batistablr, Welshy, Rasta, supersword, playername, NovemberDobby
Latest Posts
Subscribed Posts
Search
Restricted Access Restricted Access 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 05: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,, ?

DemonSeed
General Member
Since: Apr 30, 2009
Posts: 964
Last: Mar 18, 2010
[view latest posts]
Level 7
Im a fan of MODSonair
Category: CoDWW Scripting
Posted: Saturday, Jul. 4, 2009 06: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.
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 07: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
DemonSeed
General Member
Since: Apr 30, 2009
Posts: 964
Last: Mar 18, 2010
[view latest posts]
Level 7
Im a fan of MODSonair
Category: CoDWW Scripting
Posted: Saturday, Jul. 4, 2009 08:10 am
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).
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 08:31 am
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
DemonSeed
General Member
Since: Apr 30, 2009
Posts: 964
Last: Mar 18, 2010
[view latest posts]
Level 7
Im a fan of MODSonair
Category: CoDWW Scripting
Posted: Saturday, Jul. 4, 2009 09:12 am
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.
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:24 am
thank you youre awesome!
Restricted Access Restricted Access subscribe
MODSonline.com Forums : Call of Duty: World at War : CoDWW Scripting