diff --git a/README.md b/README.md index 244da74e..fa8471cb 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,26 @@ 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 F2 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-mysql : https://github.com/FXServer-ESX/fxserver-essentialmode-mysql +- 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] 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 +);