🏠
Artz Script Documents
  • Home
  • Scripts
    • Artz Police Dispatch
      • Installation
      • API Functions
    • Artz Emotes Menu
      • Installation
    • Housing System
      • Installation
      • Framework
      • Configuration
      • Open Functions
      • API
    • Dance Battle
  • REDM SCRIPTS
    • Printer Script
      • Installation
      • Basic Config
Powered by GitBook
On this page
  • First Step:
  • Second Step:
  • Third Step:
  1. Scripts
  2. Artz Emotes Menu

Installation

How to install Artz Menu

PreviousArtz Emotes MenuNextHousing System

Last updated 8 days ago

First Step:

  1. Download the latest version form .

  2. If you not have rpemotes or similar resource, download 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.

keymaster
rpemotes
Delete this file
Open this file