Game Modding | Call of Duty: Black Ops 3 | Scripting
ModmeBot:
Thread By: fedkerr6
Hello, can someone make a script for a radio usable with a trigger use?
I want an Treyarch Style radio with:
1. Only one Activation for match
2. Multiple radios
|--------------------------------------------------------------------------------------------------------|
|if you help me i add you to map developers and give credits when i publish it ;)|
|--------------------------------------------------------------------------------------------------------|
Steam: fedkerr6
Sorry for my bad english, I hope you understand :P
ModmeBot:
Reply By: im_shyote
I do believe its just a sound trigger over a model:
[ICE_GRENADE'S TUT]
ModmeBot:
Reply By: ZombieKid164
fedkerr6
Hello, can someone make a script for a radio usable with a trigger use?I want an Treyarch Style radio with:1. Only one Activation for match2. Multiple radios |--------------------------------------------------------------------------------------------------------||if you help me i add you to map developers and give credits when i publish it ;)||--------------------------------------------------------------------------------------------------------| Steam: fedkerr6 Sorry for my bad english, I hope you understand :P
radio_1,,,yorsoundfolder\yoursoundname.wav,,,UIN_MOD,,,,,BUS_FX,,,,,,80,80,50,550,551,,,,,3,oldest,,,1,1,,,,,,3d,wpn_all,,NONLOOPING,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
level thread radio_1();
function radio_1()
{
radio_noise = "radio_1"; //This will be the name of the alias that we created earlier
trig = GetEnt("radio_1_trig", "targetname"); //This will be the name we gave the trigger earlier
radio = GetEnt("radio_1", "targetname");//This will be the name we gave the radio model earlier
trig SetHintString( "Hold ^3&&1^7 to use radio" );
trig waittill( "trigger", player );
trig SetHintString( "" );
radio PlaySound(radio_noise);
//That's it!
}