Welcome Anonymous! Please Login or Register   
Main Menu   
 
HomeHome  
    Home
|RR| Clan  
    |RR| Servers
    Facebook
    GameTracker
    XFIRE
    Downloads
    Member Application
    Donations
Members  
    Members List
    Private Messages
    Profile
    Your Account
Community  
    Arcade
    Forums
    News
    Content
    Search
    Site Map
Statistics  
    Statistics
Other  
    Who-is-Where

User Info   
 
Hello ,
Welcome to Rotten Rodents Clan.

 Online:   
Member(s):

Guest(s):
01. Guest
02. Guest
Register
Lost Password
Username
Password
Most Ever Online:   
 Guest(s): 42
 Member(s): 2
 Total: 44

JAG Whos Been   
 
|RR|Renegades 00:25:43
|RR|Steveo5783 15:13:21
Lirox 01 day
GuidoTheKille... 01 day
|RR|MADD_DOGG 03 days
sammythehatchet 06 days
|RR|BlackStal... 01 week
frosty 01 week
ScaffaBoy 02 weeks
S4M1C4 03 weeks
[Shown as HH:MM:SS]
© JAG

Shout Box   
 

Only registered users can shout. Please login or create an account.

Ventrilo Status   


Arcade   
 


Latest High Score set by
|RR|MtHoodMaster
with 418 on balloon hunter
--------
The Top Players

1 - RubberBiscuit
Number Of Wins : 18

2 - |RR|MtHoodMaster
Number Of Wins : 12

3 - Lun4r
Number Of Wins : 3

4 - Excal
Number Of Wins : 3

5 - |RR|PCK
Number Of Wins : 2

6 - GuidoTheKillerPimp
Number Of Wins : 2

7 - |RR|Heywood
Number Of Wins : 2

8 - Firechicken
Number Of Wins : 1

9 - |RR|Steveo5783
Number Of Wins : 1

10 - DAZEnHAZE
Number Of Wins : 1

11 - CyberRhino
Number Of Wins : 1


Location Map   

Search   
 



Hacker Beware   
 
 You have been warned!
We have caught 421 shameful hackers.

NukeSentinel(tm) 2.6.01

How to make soundpack?




How to make soundpack?




 





 

Extra sounds are interesing option on Wolfenstein Enemy Territory server. It doesn’t matter you have jaymod, noquater or etpub. People likes extra sounds. Then how to make an interesing soundpack (vel voicepack)?


First, you need to find a existing soudpack, you can go to Wolfmap.de or ReturnToCastleWolfenstein.filefront.com and there you have some soundpacks. Then just download that one you chose and unpack that. Soundpacks are in .pk3 archive, so simply use 7zip or WinRar program to unzip that. Then you will see probably three folders: scripts, sound and ui. In scripts folder you have to edit wm_allies_chat.voice and wm_axis_chat.voice. Simply open this files in Notepad++ or similiar text-editor and change the binds and names of sound files, which are in sound folder. How to exactly do it?



Alright, you start off with the scripts/wm_allies_chat.voice and wm_axis_chat.voice files in the pak0.pk3.Add a new command for your custom sound, I.E.

kittycat

{

sound/ kittycat.wav “Cat, I’m a Kitty Cat”

}


Top line is what it’s name will be, for the example above, I would use “vsay kittycat” in the console and this sound will go off. “sound/kittycat.wav” is where the sound is located. (As a side note, make sure the wav files are mono, not stereo.) Within the quote at the end is what you want to be displayed when this sound is played, for the example above, “Cat, I’m a Kitty Cat”. Note that you can have seperate sounds for Axis and Allies, but for my sound pack, it’s the same silly sounds for both.


Next, you edit the ui/wm_quickmessage.menu and wm_quickmessageAlt.menu


Add a new menu in there for your custom sounds:

QM_MENU_START( “wm_quickmessage” )


QM_MENU_ITEM_TEAM( “S. Statements”, close wm_quickmessage; open wm_quickstatements, “s”, 0 )

QM_MENU_ITEM_TEAM( “R. Requests”, close wm_quickmessage; open wm_quickrequests, “r”, 1 )

QM_MENU_ITEM_TEAM( “C. Commands”, close wm_quickmessage; open wm_quickcommand, “c”, 2 )

QM_MENU_ITEM_TEAM( “T. Talk”, close wm_quickmessage; open wm_quickmisc, “t”, 3 )

QM_MENU_ITEM( “G. Global”, close wm_quickmessage; open wm_quickglobal, “g”, 4 )

QM_MENU_ITEM_TEAM( “F. Function”, exec “wm_sayPlayerClass”; close wm_quickmessage, “f”, 5 )

QM_MENU_ITEM_TEAM( “O. Objectives”, close wm_quickmessage; open wm_quickobjectives, “o”, 6 )

QM_MENU_ITEM( “U. Custom”, close wm_quickmessage; open wm_quickcustom, “u”, 7 )

QM_MENU_END


I added the menu “Custom”, which will open when you press the letter U.


On top of that, you have to add the same (but with numbers) to the wm_quickmessageAlt. Note the difference:

QM_MENU_START( “wm_quickmessageAlt” )


QM_MENU_ITEM_TEAM( “1. Statements”, close wm_quickmessageAlt; open wm_quickstatements_alt, “1″, 0 )

QM_MENU_ITEM_TEAM( “2. Requests”, close wm_quickmessageAlt; open wm_quickrequests_alt, “2″, 1 )

QM_MENU_ITEM_TEAM( “3. Commands”, close wm_quickmessageAlt; open wm_quickcommand_alt, “3″, 2 )

QM_MENU_ITEM_TEAM( “4. Talk”, close wm_quickmessageAlt; open wm_quickmisc_alt, “4″, 3 )

QM_MENU_ITEM( “5. Global”, close wm_quickmessageAlt; open wm_quickglobal_alt, “5″, 4 )

QM_MENU_ITEM_TEAM( “6. Function”, exec “wm_sayPlayerClass”; close wm_quickmessageAlt,”6″, 5 )

QM_MENU_ITEM_TEAM( “7. Objectives”, close wm_quickmessageAlt; open wm_quickobjectives_alt, “7″, 6 )

QM_MENU_ITEM( “8. Custom”, close wm_quickmessageAlt; open wm_quickcustom_alt, “8″, 7 )


QM_MENU_END


Now, to add a custom sound, you need to open up your new menu, again, cutting and pasting from my own sound pack:

(Note this is wm_quickmessage)QM_MENU_START( “wm_quickcustom” )

QM_MENU_ITEM( “T. TNT”, exec “VoiceChat tnt”; close wm_quickcustom, “t”, 0 )

QM_MENU_ITEM( “K. Kitty Cat”, exec “VoiceChat kittycat”; close wm_quickcustom, “k”, 1 )

QM_MENU_ITEM( “S. Shook Me”, exec “VoiceChat shook”; close wm_quickcustom, “s”, 2 )

QM_MENU_ITEM( “L. Lightning Bolt”, exec “VoiceChat lightning”; close wm_quickcustom, “l”, 3 )

QM_MENU_END


And again, you need to change the wm_quickmessageAlt.menu as well.


QM_MENU_START( “wm_quickcustom_alt” )


QM_MENU_ITEM( “1. TNT”, exec “VoiceChat tnt”; close wm_quickcustom_alt, “1″, 0 )

QM_MENU_ITEM( “2. Kitty Cat”, exec “VoiceChat kittycat”; close wm_quickcustom_alt, “2″, 1 )

QM_MENU_ITEM( “3. Shook Me”, exec “VoiceChat shook”; close wm_quickcustom_alt, “3″, 2 )

QM_MENU_ITEM( “4. Lightning Bolt”, exec “VoiceChat lightning”; close wm_quickcustom_alt, “4″, 3 )


QM_MENU_END


Make sure you take note of the sublter differenced, like the _alt added on each of the menu names. Those matter, as do the tinier details.



In that sound folder you can add and remove sound files. Those voice chat sounds (.wav files) should be 11kHz, 22kHz or 44kHz mono uncompressed PCM-wav format. And finally the last file to edit is in “ui” folder. It names wm_quickmessageAlt.menu and you have to edit menu which is opened by Alt button with your voices.

That’s all what you need to edit, now just pack that three folders with Pakscape and name like zz_your_file_name.pk3 and save. Now just upload that file into /server/jaymod/ directory and restart the server. Done. Smile


Related posts:



  1. Pakscape, simply way to make .pk3 files

  2. Configuration file (cfg)








Copyright © by Rotten Rodents Clan All Right Reserved.

Published on: 2010-10-25 (291 reads)

[ Go Back ]
Content ©
Back To Top


Spambot Killer | Site Map
[News Feed] [Forums Feed] [Downloads Feed] [Web Links Feed] [Validate robots.txt]

Images And Content Are Copyright Of Their Respective Owners.
All Rights Reserved.

PHP-Nuke Copyright © 2008 By: Francisco Burzi.
Powered By: Nuke-Evolution 2.0.7
Xtreme 2.0 Edition

Cod4 Theme Designed By: Realm Designz
Copyright © 2006-2009 www.realmdesignz.com
All Rights Reserved.