Fixed SQL, Fixed INPUT_CONTEXT

Fixed SQL, Fixed INPUT_CONTEXT, Fixed Readme
This commit is contained in:
Don
2017-08-17 00:10:07 -07:00
parent 0e39bc1de9
commit 17d588c2e6
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -12,5 +12,5 @@ git clone https://github.com/FXServer-ESX/fxserver-esx_weashops.git esx_weashops
4) Add this in your server.cfg :
```
start esx_shops
start esx_weashops
```
+1 -1
View File
@@ -4,7 +4,7 @@ Config.DrawDistance = 100
Config.Size = {x = 1.5, y = 1.5, z = 1.5}
Config.Color = {r = 0, g = 128, b = 255}
Config.Type = 1
Config.Locale = 'en'
Config.Locale = 'fr'
Config.Zones = {
+5 -5
View File
@@ -6,12 +6,12 @@ CREATE TABLE `weashops` (
`name` varchar(255) NOT NULL,
`item` varchar(255) NOT NULL,
`price` int(11) NOT NULL,
`label` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
);
INSERT INTO `weashops` (name, item, price) VALUES
('GunShop','WEAPON_Pistol',300),
('blackweashop','WEAPON_Pistol',500)
;
INSERT INTO `weashops` (name, item, price, label) VALUES
('GunShop','WEAPON_Pistol',300, 'pistol'),
('blackweashop','WEAPON_Pistol',500, 'pistol')
;
+1 -1
View File
@@ -4,7 +4,7 @@ Locales ['en'] = {
['not_enough_black'] = 'you do not have enough dirty money',
['not_enough'] = 'you do not have enough money',
['shop'] = 'shop',
['shop_menu'] = 'Press ~INPUT_CONTENT~ to access the shop.',
['shop_menu'] = 'Press ~INPUT_CONTEXT~ to access the shop.',
['map_blip'] = 'gun shop',
}