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

Members Online

»
0 Active | 15 Guests
Online:

LATEST FORUM THREADS

»
water
CoD4 MP Mapping
Rainbow HELP....
CoD4 MP Mapping

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
Category: CoDUO Mapping
CoD United Offensive mapping and level design.
Moderators: foyleman, Foxhound, Mystic, StrYdeR, batistablr, Welshy, supersword
Latest Posts
Subscribed Posts
Search
Restricted Access Restricted Access subscribe
Author Topic: hq radios with custom sound
FatBear
General Member
Since: Feb 13, 2012
Posts: 18
Last: Apr 18, 2012
[view latest posts]
Level 1
Category: CoDUO Mapping
Posted: Tuesday, Apr. 17, 2012 03:06 pm
i wanna put my own instrumental .wav in my map instead of the fuzzbox radio sounds. any tips/ideas on how to?
would i put it here?

{
radio = spawn ("script_model", (0,0,0));
radio.origin = (871, -3300, 192);
radio.angles = (0, 0, 0);
radio.targetname = "hqradio";
}

or call it with a thread?

thread radiofunk()
radiofunk()
{
sound = getent ("radio", "targetname");
sound playloopsound("radiofunk");
}
Share |
FatBear
General Member
Since: Feb 13, 2012
Posts: 18
Last: Apr 18, 2012
[view latest posts]
Level 1
Category: CoDUO Mapping
Posted: Tuesday, Apr. 17, 2012 06:04 pm
so.. after looting thru the uo/.pak01/maps/mp/gametypes/ finding hq in there i did a word search - ..ctrl -f.. for sound, came across
radio playloopsound ("german_radio");

IN MY .gsc
I replaced german_radio with MYSOUNDFILE and it works!

edited on Apr. 17, 2012 06:05 pm by FatBear
Share |
FatBear
General Member
Since: Feb 13, 2012
Posts: 18
Last: Apr 18, 2012
[view latest posts]
Level 1
Category: CoDUO Mapping
Posted: Wednesday, Apr. 18, 2012 09:55 am
ANY IDEAS on how to make a single radio have sound? when its captured by a team.
Share |
FatBear
General Member
Since: Feb 13, 2012
Posts: 18
Last: Apr 18, 2012
[view latest posts]
Level 1
Category: CoDUO Mapping
Posted: Wednesday, Apr. 18, 2012 10:39 am
i got an even better question..! can i replace a stock sound in my map. with a custom sound? ie german_radio_pathfinder... or german_radio
Share |
Spik3d
General Member
Since: Jan 29, 2008
Posts: 128
Last: Apr 23, 2013
[view latest posts]
Level 4
Category: CoDUO Mapping
Posted: Wednesday, Apr. 18, 2012 01:34 pm
You should look through the tutorials on this site and run a search before you make a thread asking for help.

http://modsonline.com/Tutorials-read-248.html
http://modsonline.com/Tutorials-read-197.html
http://modsonline.com/Tutorials-read-276.html
http://modsonline.com/Tutorials-read-433.html

Nobody likes to help someone who doesn't seem to be making any effort themselves.
Share |
bubbazan68
General Member
Since: May 23, 2010
Posts: 57
Last: Feb 14, 2013
[view latest posts]
Level 3
Category: CoDUO Mapping
Posted: Wednesday, Apr. 18, 2012 02:13 pm
FatBear writes...
Quote:
ANY IDEAS on how to make a single radio have sound? when its captured by a team.


yes it is easy really.
what you want i take it is,
on a server you are playing HQ and when the team captures teh HQ instead of stock radio sound german talking or what ever you want it to be a custom sound?
then yes it is really easy
Share |
FatBear
General Member
Since: Feb 13, 2012
Posts: 18
Last: Apr 18, 2012
[view latest posts]
Level 1
Category: CoDUO Mapping
Posted: Wednesday, Apr. 18, 2012 02:15 pm
i bet it is easy...
Share |
FatBear
General Member
Since: Feb 13, 2012
Posts: 18
Last: Apr 18, 2012
[view latest posts]
Level 1
Category: CoDUO Mapping
Posted: Wednesday, Apr. 18, 2012 03:00 pm
Spik3d writes...
Quote:
You should look through the tutorials on this site and run a search before you make a thread asking for help.

http://modsonline.com/Tutorials-read-248.html
http://modsonline.com/Tutorials-read-197.html
http://modsonline.com/Tutorials-read-276.html
http://modsonline.com/Tutorials-read-433.html

Nobody likes to help someone who doesn't seem to be making any effort themselves.


ive already tried every tutorial. and searched the forums for anything about custom radio sounds. what i find is that the radio's are not hqradios. just regular radios. making sounds for them is easy as pie. but when im using abbeys way for scripting radios. i would like to have a sound to them instead of the german_radio or german_radio_pathfinder that are the stock sounds. if you think i havent tried looking or figuring it out by myself, ive even gone thru the pak files look for hq or radio scripts. and found the hq script which still does not help.
anybody patient enough to help me, please do.
Share |
bubbazan68
General Member
Since: May 23, 2010
Posts: 57
Last: Feb 14, 2013
[view latest posts]
Level 3
Category: CoDUO Mapping
Posted: Thursday, Apr. 19, 2012 12:42 pm
you have to do a server mod that changes the sounds when you have time join COD UO and search for the {EB} server they have what you are looking for

edited on Apr. 19, 2012 01:01 pm by bubbazan68

on the server side mod something like this not sure if you can do a stand alone ? i suck at most scripting like this
changeing the sound file name of course

Code:
if (radio.team == "none")
		level hq_playsound_onplayers("explo_plant_no_tick");
	
	radio.team = team;
	
	if (team == "none")
	{
		// RADIO GOES NEUTRAL
		level.reinforcement_time = level.wavetime;
		level notify ("Timer Changed");
		level thread hq_reinforcement_timer();
		
		radio setmodel ("xmodel/objective_german_field_radio_notsolid");
		radio stoploopsound ("german_radio");
		radio stoploopsound ("german_radio_pathfinder");
		radio hide();
		radio.hidden = true;
		objective_delete(0);
		level thread hq_removhudelem_allplayers(radio);
	}
	else


edited on Apr. 19, 2012 01:03 pm by bubbazan68
Share |
Restricted Access Restricted Access subscribe
MODSonline.com Forums : Call of Duty : CoDUO Mapping

Latest Syndicated News

»
Why console gaming is dying
Quote:Consider this: Dedicated gaming sales — including living-room consoles...
Devs: Games are being dumb...
Click 'read more' to view the contents of this post.
Loadout
Gun Crafting to the Max. edited on Sep. 25, 2012 06:57 pm by Morp...
Introducing the Source Fil...
Surprised this wasn't made a long time ago. Sounds like a nice little feature.
Introducing the Source Fil...
The Source Filmmaker (SFM) is the movie-making tool built and used by us he...

Partners & Friends

»