From c6aababf26344cc77314176c97b73e3dc993e63f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20N=27gadi?= Date: Sun, 6 Aug 2017 18:12:36 +0200 Subject: [PATCH 1/4] Update essentialmode download link --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 244da74e..286e7a95 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,8 @@ https://discord.me/fivem_esx [REQUIREMENTS] -- essentialmode-mysql : https://github.com/FXServer-ESX/fxserver-essentialmode-mysql +- essentialmode => https://forum.fivem.net/t/release-essentialmode-base/3665 +- esplugin_mysql => https://forum.fivem.net/t/release-essentialmode-base/3665/1181 [INSTALLATION] From 53a5ed6017911d2f4ecbfd9ddb04e3117d058483 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20N=27gadi?= Date: Sun, 6 Aug 2017 19:50:04 +0200 Subject: [PATCH 2/4] Add screenshot + description --- README.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 286e7a95..320dd401 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,25 @@ FXServer ES Extended https://discord.me/fivem_esx +[SCREENSHOT] + +![screenshot](http://i.imgur.com/aPFdJl3.jpg) + +[DESCRIPTION] + +Add support for accounts (bank / black money) you can also add others accounts + +Add support for inventory (press F5 ingame) => Players can now remove items from inventory + +Add support for jobs + +Loadouts are saved in database and restored on spawn + +Positions are saved in database and restored on spawn + [REQUIREMENTS] -- essentialmode => https://forum.fivem.net/t/release-essentialmode-base/3665 +- essentialmode + es_admin => https://forum.fivem.net/t/release-essentialmode-base/3665 - esplugin_mysql => https://forum.fivem.net/t/release-essentialmode-base/3665/1181 [INSTALLATION] From 4d2b430781e01aa2d3fefeef58ac9f12d19a2fac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20N=27gadi?= Date: Sun, 6 Aug 2017 20:01:00 +0200 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 320dd401..fa8471cb 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ https://discord.me/fivem_esx Add support for accounts (bank / black money) you can also add others accounts -Add support for inventory (press F5 ingame) => Players can now remove items from inventory +Add support for inventory (press F2 ingame) => Players can now remove items from inventory Add support for jobs From e2e223d7de2716280f39cc1dddadf0b01cf70ac6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20N=27gadi?= Date: Mon, 7 Aug 2017 12:17:27 +0200 Subject: [PATCH 4/4] Update es_extended.sql --- es_extended.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es_extended.sql b/es_extended.sql index 411e682b..834a229c 100644 --- a/es_extended.sql +++ b/es_extended.sql @@ -1,4 +1,4 @@ -USE `gta5_gamemode_essential`; +USE `essentialmode`; ALTER TABLE `users` ADD COLUMN `name` VARCHAR(255) NULL DEFAULT '' AFTER `money`, @@ -63,4 +63,4 @@ CREATE TABLE `user_inventory` ( `count` int(11) NOT NULL, PRIMARY KEY (`id`) -); \ No newline at end of file +);