âïļExit Emotes
Exit Emotes are used to make cancelling an animation smooth and dynamic e.g. such as getting up from a chair or throwing a cigarette out instead of dropping it.
Adding Exit Emotes
To add your own Exit emotes navigate to the following path:
rpemotes-reborn > client > AnimationListCustom.lua
Find CustomDP.Exits = {}
in the AnimationListCustom.lua
CustomDP.Exits = {}
Use the following template within the curly brackets
CustomDP.Exits = {
["getup"] = {
"get_up@sat_on_floor@to_stand", -- Dictionary Name
"getup_0", -- Emote Name
"Get Up", -- Name in menu in GTA 5
AnimationOptions = {
EmoteDuration = 2000,
StartDelay = 600
}
},
}
and change the values to desired values.
Read hints below for more information:
Below is an example of how this is implemented:
["sit"] = {
"anim@amb@business@bgen@bgen_no_work@",
"sit_phone_phoneputdown_idle_nowork",
"Sit",
AnimationOptions = {
EmoteLoop = true,
ExitEmote = "getup",
ExitEmoteType = "Exits"
}
},
In the above example, the ExitEmote calls for the 'getup' emote, which is noted as the following:
["getup"] = {
"get_up@sat_on_floor@to_stand",
"getup_0",
"Get Up",
AnimationOptions = {
EmoteDuration = 2000,
StartDelay = 600
}
},
Last updated