mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-31 02:08:55 +00:00
Fixed SQL, Fixed INPUT_CONTEXT
Fixed SQL, Fixed INPUT_CONTEXT, Fixed Readme
This commit is contained in:
@@ -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
@@ -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
@@ -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
@@ -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',
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user