Skip to content

Commit

Permalink
Merge pull request #655 from bitpredator/dev
Browse files Browse the repository at this point in the history
chore: bpt_ammujob database update
  • Loading branch information
bitpredator authored Feb 28, 2024
2 parents 9577019 + 7c00731 commit 7fd38b3
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 8 deletions.
10 changes: 5 additions & 5 deletions server-data/resources/[bpt_addons]/bpt_ammujob/bpt_ammujob.sql
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ INSERT INTO `jobs` (name, label) VALUES
;

INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('ammu',0,'apprentice','Apprendista',20,'{}','{}'),
('ammu',1,'gunsmith','Armaiolo',40,'{}','{}'),
('ammu',2,'armorychief','Capo Armeria',60,'{}','{}'),
('ammu',3,'deputydirector','Vice direttore',85,'{}','{}'),
('ammu',4,'boss','Direttore',100,'{}','{}')
('ammu',0,'apprentice','Apprentice',20,'{}','{}'),
('ammu',1,'gunsmith','Gunsmith',40,'{}','{}'),
('ammu',2,'armorychief','Armory Chief',60,'{}','{}'),
('ammu',3,'deputydirector','Deputy Director',85,'{}','{}'),
('ammu',4,'boss','Boss',100,'{}','{}')
;
6 changes: 3 additions & 3 deletions server-data/resources/[bpt_addons]/bpt_ammujob/fxmanifest.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@ game("gta5")
description("bpt_ammunation job")
author("bitpredator")
lua54("yes")
version("1.0.0")
version("1.0.1")

shared_script("@es_extended/imports.lua")

client_scripts({
"@es_extended/locale.lua",
"locales/*.lua",
"config.lua",
"client/main.lua",
"client/*.lua",
})

server_scripts({
"@es_extended/locale.lua",
"locales/*.lua",
"config.lua",
"server/main.lua",
"server/*.lua",
})

dependency("es_extended")
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
INSERT INTO `addon_account` (name, label, shared) VALUES
('society_ammu', 'Ammu', 1)
;

INSERT INTO `datastore` (name, label, shared) VALUES
('society_ammu', 'Ammu', 1)
;

INSERT INTO `addon_inventory` (name, label, shared) VALUES
('society_ammu', 'Ammu', 1)
;

INSERT INTO `jobs` (name, label) VALUES
('ammu', 'Armeria')
;

INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('ammu',0,'apprentice','Apprendista',20,'{}','{}'),
('ammu',1,'gunsmith','Armaiolo',40,'{}','{}'),
('ammu',2,'armorychief','Capo Armeria',60,'{}','{}'),
('ammu',3,'deputydirector','Vice direttore',85,'{}','{}'),
('ammu',4,'boss','Direttore',100,'{}','{}')
;

0 comments on commit 7fd38b3

Please sign in to comment.