Installation

How to install Artz Menu

First Step:

  1. Download the latest version form keymaster.

  2. If you not have rpemotes or similar resource, download rpemotes recommended.

Second Step:

  1. Open your rpemotes resource folder and open client folder.

  2. Delete EmoteMenu.lua file.

  1. Open/Edit Emote.lua file:

  1. 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:

  1. Open artz_emotes folder and go to shared folder, next open config.lua.

  2. Set parameters correct and translate language.

  3. Done! Start your server.

Last updated