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

Members Online

»
0 Active | 68 Guests
Online:

LATEST FORUM THREADS

»
CoD: Battle Royale
CoD+UO Map + Mod Releases
Damaged .pk3's
CoD Mapping
heli to attack ai
CoD4 SP 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, DrBiggzz, supersword
Latest Posts
Subscribed Posts
Search
Restricted Access Topic is Locked 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 10: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: Wednesday, Apr. 18, 2012 01:04 am
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 04:55 pm
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 05:39 pm
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 30, 2008
Posts: 130
Last: Feb 19, 2015
[view latest posts]
Level 4
Category: CoDUO Mapping
Posted: Wednesday, Apr. 18, 2012 08: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 24, 2010
Posts: 62
Last: Oct 3, 2016
[view latest posts]
Level 3
Category: CoDUO Mapping
Posted: Wednesday, Apr. 18, 2012 09: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 09: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 10: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 24, 2010
Posts: 62
Last: Oct 3, 2016
[view latest posts]
Level 3
Category: CoDUO Mapping
Posted: Thursday, Apr. 19, 2012 07: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 Topic is Locked subscribe
MODSonline.com Forums : Call of Duty : CoDUO Mapping

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

»