Skip to content

Latest commit

 

History

History
25 lines (23 loc) · 605 Bytes

addEmoteMenuOption.md

File metadata and controls

25 lines (23 loc) · 605 Bytes

Add Emote Menu Option

Add a new menu option to the emote menu

local scully_emotemenu = exports.scully_emotemenu

scully_emotemenu:addEmoteMenuOption({
    name = 'Animal Emotes',
    icon = 'fa-solid fa-dog',
    options = {
        {
            Label = 'Bark (big dog)',
            Command = 'bdogbark',
            Animation = 'idle_a',
            Dictionary = 'creatures@rottweiler@amb@world_dog_barking@idle_a',
            Options = {
                Flags = {
                    Loop = true,
                },
            },
            PedTypes = {'big_dogs'},
        }
    }
})