Fixed #9, fixed dead opening f6 menu, fixed restarting script, fixed exploit taking more than you can carry

This commit is contained in:
ElPumpo
2018-04-30 23:41:27 +02:00
parent a336783cfc
commit 555f1c8fac
10 changed files with 191 additions and 289 deletions
+12 -8
View File
@@ -1,21 +1,25 @@
USE `essentialmode`;
INSERT INTO `addon_account` (name, label, shared) VALUES
('society_taxi','Taxi',1)
('society_taxi', 'Taxi', 1)
;
INSERT INTO `datastore` (name, label, shared) VALUES
('society_taxi', 'Taxi', 1)
;
INSERT INTO `addon_inventory` (name, label, shared) VALUES
('society_taxi','Taxi',1)
('society_taxi', 'Taxi', 1)
;
INSERT INTO `jobs` (name, label) VALUES
('taxi','Taxi')
('taxi', 'Taxi')
;
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('taxi',0,'recrue','Rekrut',12,'{}','{}'),
('taxi',1,'novice','Anfänger',24,'{}','{}'),
('taxi',2,'experimente','Experte',36,'{}','{}'),
('taxi',3,'uber','Schichtführer',48,'{}','{}'),
('taxi',4,'boss','Chef',0,'{}','{}')
('taxi',0,'recrue','Rekrut',12,'{}','{}'),
('taxi',1,'novice','Anfänger',24,'{}','{}'),
('taxi',2,'experimente','Experte',36,'{}','{}'),
('taxi',3,'uber','Schichtführer',48,'{}','{}'),
('taxi',4,'boss','Chef',0,'{}','{}')
;