Improved radio anims with support for rp-emotes and scully emotes
Add setr voice_enableRadioAnim 0
to your server.cfg
This WILL NOT work if you are using rp-radio
Download the release of ox_lib from & add it to your server.cfg or resources.cfg BEFORE TAM_BetterRadioAnims
Add ensure TAM_BetterRadioAnims
to your server or resources cfg file
Download animations and add to stream folder
Add to scully_emotemenu/custom_emotes.lua: Emotes = {}
{
Label = 'Radio 2',
Command = 'radio2',
Animation = 'radio_chatter',
Dictionary = 'random@arrests',
Options = {
Flags = {
Loop = true,
Move = true,
},
},
},
{
Label = 'Radio Chest',
Command = 'radiochest',
Animation = 'chest_mic',
Dictionary = 'anim@cop_mic_pose_002',
Options = {
Flags = {
Loop = true,
Move = true,
},
},
},
{
Label = 'Earpiece',
Command = 'earpiece',
Animation = 'cellphone_call_listen_base',
Dictionary = 'cellphone@',
Options = {
Flags = {
Loop = true,
Move = true,
},
},
},
Add to rpemotes/client/AnimationListCustom.lua:
Change config.defaultEmote
to wt3
or wt4
CustomDP.Emotes = {}
["radio2"] = {
"random@arrests",
"radio_chatter",
"Radio 2",
AnimationOptions = {
EmoteLoop = true,
EmoteMoving = true,
}
},
["radiochest"] = {
"anim@cop_mic_pose_002",
"chest_mic",
"Radio Chest",
AnimationOptions = {
EmoteLoop = true,
EmoteMoving = true,
}
},
["earpiece"] = {
"cellphone@",
"cellphone_call_listen_base",
"Earpiece",
AnimationOptions = {
EmoteLoop = true,
EmoteMoving = true,
}
},
Marshular - Original creator, gave explicit permission to release under Three Amigos Modding