Installation
How to install Artz Menu
First Step:
Download the latest version form keymaster.
If you not have rpemotes or similar resource, download rpemotes recommended.
Second Step:
Open your rpemotes resource folder and open client folder.
Delete EmoteMenu.lua file.

Open/Edit Emote.lua file:

Go to the last line and paste this code:
-- Artz Menu Exports
lang = Config.MenuLanguage
exports("EmoteCommandStart", function(emoteName, textureVariation)
EmoteCommandStart(nil, {emoteName, textureVariation}, nil)
end)
exports("WalkCommandStart", function(walkName)
WalkCommandStart(walkName)
end)
exports("ExpressionCommandStart", function(expressionName)
if RP then
if RP.Expressions[expressionName] ~= nil then
SetPlayerPedExpression(RP.Expressions[expressionName][1], true)
end
elseif DP then
if DP.Expressions[expressionName] ~= nil then
OnEmotePlay(DP.Expressions[expressionName])
end
else
print("Contact to developer, because you are not using a EmoteMenu compatible!")
end
end)
exports("EmoteCancel", EmoteCancel)
exports("CanCancelEmote", function(State)
CanCancel = State == true
end)
exports("GetEmotes", function()
return RP and RP or DP
end)
exports("GetConfig", function()
return Config
end)
Third Step:
Open artz_emotes folder and go to shared folder, next open config.lua.
Set parameters correct and translate language.
Done! Start your server.
Last updated