Resource essentialmode does not specify an `fx_version` in fxmanifest.lua

I get this error

Warning: Resource essentialmode does not specify an `fx_version` in fxmanifest.lua.
Couldn't start resource essentialmode.
Started resource fxmigrant
Warning: Resource essentialmode does not specify an `fx_version` in fxmanifest.lua.
Could not start dependency essentialmode for resource esplugin_mysql.
Couldn't start resource esplugin_mysql.
Warning: Resource essentialmode does not specify an `fx_version` in fxmanifest.lua.
Could not start dependency essentialmode for resource es_admin2.
Couldn't start resource es_admin2.

append the version to the fxmanifest.lua, its missing it.

I tried to copy the code from there but still not working. :frowning:
I really don’t know what the problem could be. By the way I’m new to Fivem (Servers) and sorry if this is a simple problem but I just don’t get it. Here is the entire fxmanifest.lua

fx_version 'bodacious'
games { 'rdr3', 'gta5' }

description 'ES Extended'

version '1.2.0'


server_scripts {
	'@async/async.lua',
	'@mysql-async/lib/MySQL.lua',

	'locale.lua',
	'locales/de.lua',
	'locales/br.lua',
	'locales/fr.lua',
	'locales/en.lua',
	'locales/fi.lua',
	'locales/sv.lua',
	'locales/pl.lua',
	'locales/cs.lua',

	'config.lua',
	'config.weapons.lua',

	'server/common.lua',
	'server/classes/player.lua',
	'server/functions.lua',
	'server/paycheck.lua',
	'server/main.lua',
	'server/commands.lua',

	'common/modules/math.lua',
	'common/modules/table.lua',
	'common/functions.lua'
}

client_scripts {
	'locale.lua',
	'client_two.lua',
	'locales/de.lua',
	'locales/br.lua',
	'locales/fr.lua',
	'locales/en.lua',
	'locales/fi.lua',
	'locales/sv.lua',
	'locales/pl.lua',
	'locales/cs.lua',

	'config.lua',
	'config.weapons.lua',

	'client/common.lua',
	'client/entityiter.lua',
	'client/functions.lua',
	'client/wrapper.lua',
	'client/main.lua',

	'client/modules/death.lua',
	'client/modules/scaleform.lua',
	'client/modules/streaming.lua',

	'common/modules/math.lua',
	'common/modules/table.lua',
	'common/functions.lua'
}

ui_page {
	'html/ui.html'
}

files {
	'locale.js',
	'html/ui.html',

	'html/css/app.css',

	'html/js/mustache.min.js',
	'html/js/wrapper.js',
	'html/js/app.js',

	'html/fonts/pdown.ttf',
	'html/fonts/bankgothic.ttf',

	'html/img/accounts/bank.png',
	'html/img/accounts/black_money.png',
	'html/img/accounts/money.png'
}

exports {
	'getSharedObject'
}

server_exports {
	'getSharedObject'
}

dependencies {
	'mysql-async',
	'async'
}

did the error change or did it remain the same?

Same error

You need to update your server binaries, the ‘bodacious’ version was added in 2207.

how tho?

https://runtime.fivem.net/artifacts/fivem/build_server_windows/master/

1 Like

thanks

Updated my manifest still getting Warning: Resource essentialmode does not specify an fx_version in fxmanifest.lua.
Couldn’t start resource essentialmode.

It’s not an issue with the build version. I have tried all versions and get the same error. Hoping something shows up here that can fix it

It is the build version, just download the latest artifact that’s available now and that should solve the issue.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.