[RELEASE] Menu and Dialog for ESX

I’ve released a clean menu and dialog for esx, the installation guide can you find in the github.

image

Download here:
Github

45 Likes

Moved to released and i added your photos directly to the post, looks nice though :smile:

Thanks

Looks good :mascot: :smiley:

1 Like

Thanks. :slight_smile:

Awesome design, will use!

How i show up the job on the inventory menu?

Thanks!

1 Like

Nice!

Go to es_extended/client/functions.lua

Find

    table.insert(elements, {
        label     = _U('cash', ESX.PlayerData.money),
        count     = ESX.PlayerData.money,
        type      = 'item_money',
        value     = 'money',
        usable    = false,
        rare      = false,
        canRemove = true
    })

Replace it to

table.insert(elements, {
label = 'Job: ’ … ESX.PlayerData.job.label … ’ - ’ … ESX.PlayerData.job.grade_label
})

table.insert(elements, {
label = 'Cash: $ ’ … ESX.PlayerData.money,
count = ESX.PlayerData.money,
type = ‘item_money’,
value = ‘money’,
usable = false,
rare = false,
canRemove = true
})

Very easy to install and looks so much better now. Thanks for this one.

1 Like
	table.insert(elements, {
	label = 'Job: ’ … ESX.PlayerData.job.label … ’ - ’ … ESX.PlayerData.job.grade_label
	    })

This isnt working, says its an unfinished string.

should be

		table.insert(elements, {
		label = 'Job: ’ … ESX.PlayerData.job.label … ’ - ’ … ESX.PlayerData.job.grade_label'
		    })

I followed the instructions and got it all to work fine, but my submenu when I try to throw something looks like this. How do i fix this?

1 Like

Remove line 5 in app.js.

sorry, im quite new to this. where is app.js?

this is all i have in the file I downloadedmenu

Read the installation guide again, I updated it

Ah yeah okay.

so im in esx_menu_dialog>html>css>app.css

so i delete line 5 which is menu?

sorry about all the questions, still learning

No… Go in to esx_menu_dialog/html/js/app.js then delete line 5.

thanks! got it sorted

Hi all could some one help me please this is working great but this menu part as none english part and i cant find what script call this up so i can change it to Englishf606d966c78336fa1cd0b5673ec3acafb943bd23_2_517x201 Mines in a different language

And line 5 is a class

Remove line 5.

i already removed line 5 on mine and it still shows like that