Improved radio animations w/ support for multiple animation menus.
- Support for any ped model
- Clothing support
- Support for multiple animations
- Keybind and Event support
- Ped and Vehicle Class blacklist support
-
Remove any resource that already has emotes/anims built-in (i.e. rp-radio)
-
Ensure you have either scully_emotemenu or rpemotes-reborn installed, and is started BEFORE
TAM_BetterRadioAnims
-
Download the release of ox_lib, and add it to your
server.cfg
BEFORETAM_BetterRadioAnims
-
Add
setr voice_enableRadioAnim 0
to yourserver.cfg
-
Add
ensure TAM_BetterRadioAnims
to yourserver.cfg
-
Download animations and add to any stream folder
- Add to
scully_emotemenu/shared/data/emotes/general_emotes.lua
:
{
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,
},
},
},
-
Change
config.animations["default"]
towt3
orwt4
-
Add to
rpemotes/client/AnimationListCustom.lua
->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