From da1ce4af37827d40226c699985799a2fe65b70e3 Mon Sep 17 00:00:00 2001 From: HakkoDevelopment <67168651+Hakkodevelopment@users.noreply.github.com> Date: Thu, 11 Aug 2022 19:04:31 -0600 Subject: [PATCH] Fixed AOP Export issues --- ND_CharacterSelection/config.lua | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/ND_CharacterSelection/config.lua b/ND_CharacterSelection/config.lua index 1a33c16..a3f9640 100644 --- a/ND_CharacterSelection/config.lua +++ b/ND_CharacterSelection/config.lua @@ -2,12 +2,9 @@ config = { changeCharacterCommand = "changecharacter", -- this is the command to open the ui again and change your character. - enableAppearance = false, -- you need to install fivem-appearance - characterSelectionAopDisplay = false, - aop = function () - return "AOP: " .. exports["SimpleHUD"]:getAOP() -- exports["ModernHUD"]:getAOP() - end, - + enableAppearance = true, -- you need to install fivem-appearance + characterSelectionAopDisplay = true, + aop = "SimpleHUD", -- ModernHUD, SimpleHUD. If you're using a custom AOP system, put the resource name here and make sure it has the export getAOP -- set your backgrounds, if you have more than 1 then it will randomly change everytime you open the ui. backgrounds = { "https://i.imgur.com/E51ckFx.png", -- Credits: Fuzzman270#0270 @@ -53,4 +50,4 @@ config = { {x = 1194.71, y = -1474.14, z = 33.86, name = "Fire Station No7 (Los Santos)"} }, } -} \ No newline at end of file +}