0.0.1
This commit is contained in:
@@ -0,0 +1,88 @@
|
||||
INSERT INTO `addon_account` (name, label, shared) VALUES
|
||||
('society_police', 'Polizei', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `datastore` (name, label, shared) VALUES
|
||||
('society_police', 'Polizei', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `addon_inventory` (name, label, shared) VALUES
|
||||
('society_police', 'Polizei', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `jobs` (name, label) VALUES
|
||||
('police', 'Polizei')
|
||||
;
|
||||
|
||||
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
|
||||
('police',0,'recruit','Rekrut',20,'{}','{}'),
|
||||
('police',1,'officer','Polizist',40,'{}','{}'),
|
||||
('police',2,'sergeant','Feldwebel',60,'{}','{}'),
|
||||
('police',3,'lieutenant','Leutnant',85,'{}','{}'),
|
||||
('police',4,'boss','Chef',100,'{}','{}')
|
||||
;
|
||||
|
||||
CREATE TABLE `fine_types` (
|
||||
`id` int NOT NULL AUTO_INCREMENT,
|
||||
`label` varchar(255) DEFAULT NULL,
|
||||
`amount` int DEFAULT NULL,
|
||||
`category` int DEFAULT NULL,
|
||||
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
|
||||
INSERT INTO `fine_types` (label, amount, category) VALUES
|
||||
('Falsche nutzung der Hupe', 30, 0),
|
||||
('Unerlaubtes Überschreiten einer durchgezogenen Linie', 40, 0),
|
||||
('Auf der Falschen Straßenseite fahren', 250, 0),
|
||||
('Illegaler U-Turn', 250, 0),
|
||||
('Illegal Off-Road fahren', 170, 0),
|
||||
('Anweisung eines Gesetzeshüter missachtet', 30, 0),
|
||||
('Illegales Fahrzeuganhalten', 150, 0),
|
||||
('Illegales Parken', 70, 0),
|
||||
('Missachtung des Rechtsabbiegegebot', 70, 0),
|
||||
('Nichteinhaltung der Fahrzeuginformationen', 90, 0),
|
||||
('Nicht am Stopschild gehalten', 105, 0),
|
||||
('Rote Ampel überfahren', 130, 0),
|
||||
('Illegales Überfahren', 100, 0),
|
||||
('Fahren eines illegalen Fahrzeuges', 100, 0),
|
||||
('Fahren ohne Führerschein', 1500, 0),
|
||||
('Fahrerflucht', 800, 0),
|
||||
('Geschwindigkeitsüberschreitung über < 5 mph', 90, 0),
|
||||
('Geschwindigkeitsüberschreitung über 5-15 mph', 120, 0),
|
||||
('Geschwindigkeitsüberschreitung über 15-30 mph', 180, 0),
|
||||
('Geschwindigkeitsüberschreitung über > 30 mph', 300, 0),
|
||||
('Beeinträchtigung des Straßenvehrkehrs', 110, 1),
|
||||
('Betrunkenes Fahren', 90, 1),
|
||||
('Ordnungswidriges Verhalten', 90, 1),
|
||||
('Behinderung der Justiz', 130, 1),
|
||||
('Beleidigungen gegenüber Zivilisten', 75, 1),
|
||||
('Respektloses Verhalten gegenüber eines Polizisten', 110, 1),
|
||||
('Verbale Drohung gegenüber einer Zivilperson', 90, 1),
|
||||
('Verbale Drohung gegenüber eines Polizisten', 150, 1),
|
||||
('Verbreiten von Falschinformationen', 250, 1),
|
||||
('Versuchte Kurroption', 1500, 1),
|
||||
('Führen einer Waffe innerhalb der Stadt', 120, 2),
|
||||
('Einsatz einer tödlichen Waffe im Stadtgebiet', 300, 2),
|
||||
('Kein Waffenschein', 80000, 2),
|
||||
('Besitz einer illegalen Waffe', 700, 2),
|
||||
('Besitz von Einbruchswerkzeug', 300, 2),
|
||||
('Auto Diebstahl', 1800, 2),
|
||||
('Absicht zum Verkauf/Distribution einer illegalen Substanz', 1500, 2),
|
||||
('Betrug einer illegalen Substanz', 1500, 2),
|
||||
('Besitz einer illegalen Substanz ', 6520, 2),
|
||||
('Entführung eines Zivilisten', 15000, 2),
|
||||
('Entführung eines Polizisten', 20000, 2),
|
||||
('Diebstahl', 650, 2),
|
||||
('Bewaffneter Raubüberfall auf einen Laden', 650, 2),
|
||||
('Bewaffneter Raubüberfall auf eine Bank', 1500, 2),
|
||||
('Angriff auf einen Zivilisten', 2000, 3),
|
||||
('Angriff auf einen Polizisten', 2500, 3),
|
||||
('Versuchter Mord eines Zivilisten', 3000, 3),
|
||||
('Versuchter Mord eines Polizisten', 5000, 3),
|
||||
('Mörder eines Zivilisten', 100000, 3),
|
||||
('Mörder eines Polizisten', 300000, 3),
|
||||
('Unfreiwillige Tötung', 1800, 3),
|
||||
('Betrug', 2000, 2);
|
||||
;
|
||||
@@ -0,0 +1,88 @@
|
||||
INSERT INTO `addon_account` (name, label, shared) VALUES
|
||||
('society_police', 'Police', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `datastore` (name, label, shared) VALUES
|
||||
('society_police', 'Police', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `addon_inventory` (name, label, shared) VALUES
|
||||
('society_police', 'Police', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `jobs` (name, label) VALUES
|
||||
('police', 'Police')
|
||||
;
|
||||
|
||||
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
|
||||
('police',0,'recruit','Recruit',20,'{}','{}'),
|
||||
('police',1,'officer','Officer',40,'{}','{}'),
|
||||
('police',2,'sergeant','Sergeant',60,'{}','{}'),
|
||||
('police',3,'lieutenant','Lieutenant',85,'{}','{}'),
|
||||
('police',4,'boss','Chief',100,'{}','{}')
|
||||
;
|
||||
|
||||
CREATE TABLE `fine_types` (
|
||||
`id` int NOT NULL AUTO_INCREMENT,
|
||||
`label` varchar(255) DEFAULT NULL,
|
||||
`amount` int DEFAULT NULL,
|
||||
`category` int DEFAULT NULL,
|
||||
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
|
||||
INSERT INTO `fine_types` (label, amount, category) VALUES
|
||||
('Misuse of a horn', 30, 0),
|
||||
('Illegally Crossing a continuous Line', 40, 0),
|
||||
('Driving on the wrong side of the road', 250, 0),
|
||||
('Illegal U-Turn', 250, 0),
|
||||
('Illegally Driving Off-road', 170, 0),
|
||||
('Refusing a Lawful Command', 30, 0),
|
||||
('Illegally Stopping a Vehicle', 150, 0),
|
||||
('Illegal Parking', 70, 0),
|
||||
('Failing to Yield to the right', 70, 0),
|
||||
('Failure to comply with Vehicle Information', 90, 0),
|
||||
('Failing to stop at a Stop Sign ', 105, 0),
|
||||
('Failing to stop at a Red Light', 130, 0),
|
||||
('Illegal Passing', 100, 0),
|
||||
('Driving an illegal Vehicle', 100, 0),
|
||||
('Driving without a License', 1500, 0),
|
||||
('Hit and Run', 800, 0),
|
||||
('Exceeding Speeds Over < 5 mph', 90, 0),
|
||||
('Exceeding Speeds Over 5-15 mph', 120, 0),
|
||||
('Exceeding Speeds Over 15-30 mph', 180, 0),
|
||||
('Exceeding Speeds Over > 30 mph', 300, 0),
|
||||
('Impeding traffic flow', 110, 1),
|
||||
('Public Intoxication', 90, 1),
|
||||
('Disorderly conduct', 90, 1),
|
||||
('Obstruction of Justice', 130, 1),
|
||||
('Insults towards Civilans', 75, 1),
|
||||
('Disrespecting of an LEO', 110, 1),
|
||||
('Verbal Threat towards a Civilan', 90, 1),
|
||||
('Verbal Threat towards an LEO', 150, 1),
|
||||
('Providing False Information', 250, 1),
|
||||
('Attempt of Corruption', 1500, 1),
|
||||
('Brandishing a weapon in city Limits', 120, 2),
|
||||
('Brandishing a Lethal Weapon in city Limits', 300, 2),
|
||||
('No Firearms License', 600, 2),
|
||||
('Possession of an Illegal Weapon', 700, 2),
|
||||
('Possession of Burglary Tools', 300, 2),
|
||||
('Grand Theft Auto', 1800, 2),
|
||||
('Intent to Sell/Distrube of an illegal Substance', 1500, 2),
|
||||
('Frabrication of an Illegal Substance', 1500, 2),
|
||||
('Possession of an Illegal Substance ', 650, 2),
|
||||
('Kidnapping of a Civilan', 1500, 2),
|
||||
('Kidnapping of an LEO', 2000, 2),
|
||||
('Robbery', 650, 2),
|
||||
('Armed Robbery of a Store', 650, 2),
|
||||
('Armed Robbery of a Bank', 1500, 2),
|
||||
('Assault on a Civilian', 2000, 3),
|
||||
('Assault of an LEO', 2500, 3),
|
||||
('Attempt of Murder of a Civilian', 3000, 3),
|
||||
('Attempt of Murder of an LEO', 5000, 3),
|
||||
('Murder of a Civilian', 10000, 3),
|
||||
('Murder of an LEO', 30000, 3),
|
||||
('Involuntary manslaughter', 1800, 3),
|
||||
('Fraud', 2000, 2);
|
||||
;
|
||||
@@ -0,0 +1,88 @@
|
||||
INSERT INTO `addon_account` (name, label, shared) VALUES
|
||||
('society_police', 'Policía', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `datastore` (name, label, shared) VALUES
|
||||
('society_police', 'Policía', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `addon_inventory` (name, label, shared) VALUES
|
||||
('society_police', 'Policía', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `jobs` (name, label) VALUES
|
||||
('police', 'Policía')
|
||||
;
|
||||
|
||||
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
|
||||
('police',0,'recruit','Recluta',20,'{}','{}'),
|
||||
('police',1,'officer','Oficial',40,'{}','{}'),
|
||||
('police',2,'sergeant','Sargento',60,'{}','{}'),
|
||||
('police',3,'lieutenant','Teniente',85,'{}','{}'),
|
||||
('police',4,'boss','Jefe',100,'{}','{}')
|
||||
;
|
||||
|
||||
CREATE TABLE `fine_types` (
|
||||
`id` int NOT NULL AUTO_INCREMENT,
|
||||
`label` varchar(255) DEFAULT NULL,
|
||||
`amount` int DEFAULT NULL,
|
||||
`category` int DEFAULT NULL,
|
||||
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
|
||||
INSERT INTO `fine_types` (label, amount, category) VALUES
|
||||
('Mal uso del claxon', 30, 0),
|
||||
('Cruzar indebidamente la línea continua', 40, 0),
|
||||
('Conducir por el lado incorrecto de la carretera', 250, 0),
|
||||
('Giro indebido', 250, 0),
|
||||
('Conducir indebidamente fuera de la carretera', 170, 0),
|
||||
('No hacer caso a una orden de un agente', 30, 0),
|
||||
('Detener el vehículo de forma incorrecta', 150, 0),
|
||||
('Aparcar en un lugar no habilitado', 70, 0),
|
||||
('No ceder al girar a la derecha', 70, 0),
|
||||
('No cumplir con los datos de tu vehículo', 90, 0),
|
||||
('No pararse en una señal de STOP', 105, 0),
|
||||
('No pararse en un semáforo cuando está en rojo', 130, 0),
|
||||
('Cruzar indebidamente', 100, 0),
|
||||
('Conducir un coche no permitido', 100, 0),
|
||||
('Conducir sin carnet de conducción', 1500, 0),
|
||||
('Chocar y darse a la fuga', 800, 0),
|
||||
('Exceder la velocidad permitida en 5 km/h', 90, 0),
|
||||
('Exceder la velocidad permitida entre 5 y 15 km/h', 120, 0),
|
||||
('Exceder la velocidad permitida entre 15 y 30 km/h', 180, 0),
|
||||
('Exceder la velocidad permitida más de 30 km/h', 300, 0),
|
||||
('Generar atasco en una carretera', 110, 1),
|
||||
('Intoxicación pública', 90, 1),
|
||||
('Conducta alocada', 90, 1),
|
||||
('Obstrucción a la justicia', 130, 1),
|
||||
('Insultos hacia civiles', 75, 1),
|
||||
('Insultos hacia un agente', 110, 1),
|
||||
('Amenaza verbar a un civil', 90, 1),
|
||||
('Amenaza verbal a un agente', 150, 1),
|
||||
('Dar información falsa', 250, 1),
|
||||
('Intento de corrupción', 1500, 1),
|
||||
('Tendencia de armas en los limites de la ciudad', 120, 2),
|
||||
('Tendencia de armas letales en los limites de la ciudad', 300, 2),
|
||||
('No tener licencia de armas', 600, 2),
|
||||
('Posesión de un arma ilegal', 700, 2),
|
||||
('Posesión de herramientas para robos', 300, 2),
|
||||
('Desorden público', 1800, 2),
|
||||
('Intento de venta o distribución de sustancias ilegales', 1500, 2),
|
||||
('Fabricación de sustancias ilegales', 1500, 2),
|
||||
('Posesión de sustancias ilegales', 650, 2),
|
||||
('Secuestro de un civil', 1500, 2),
|
||||
('Secuestro de un agente', 2000, 2),
|
||||
('Robo', 650, 2),
|
||||
('Robo armado a una tienda', 650, 2),
|
||||
('Robo armado a un banco', 1500, 2),
|
||||
('Asalto a un civil', 2000, 3),
|
||||
('Asalto a un agente', 2500, 3),
|
||||
('Intento de asesinato a un civil', 3000, 3),
|
||||
('Intento de asesinato a un agente', 5000, 3),
|
||||
('Asesinato de un civil', 10000, 3),
|
||||
('Asesinato de un policia', 30000, 3),
|
||||
('Homicidio involuntario', 1800, 3),
|
||||
('Fraude', 2000, 2);
|
||||
;
|
||||
@@ -0,0 +1,88 @@
|
||||
INSERT INTO `addon_account` (name, label, shared) VALUES
|
||||
('society_police', 'Poliisi', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `datastore` (name, label, shared) VALUES
|
||||
('society_police', 'Poliisi', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `addon_inventory` (name, label, shared) VALUES
|
||||
('society_police', 'Poliisi', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `jobs` (name, label) VALUES
|
||||
('police', 'Poliisi')
|
||||
;
|
||||
|
||||
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
|
||||
('police',0,'recruit','Tulokas',20,'{}','{}'),
|
||||
('police',1,'officer','Konstaapeli',40,'{}','{}'),
|
||||
('police',2,'sergeant','Ylikonstaapeli',60,'{}','{}'),
|
||||
('police',3,'lieutenant','Kersantti',85,'{}','{}'),
|
||||
('police',4,'boss','Komentaja',100,'{}','{}')
|
||||
;
|
||||
|
||||
CREATE TABLE `fine_types` (
|
||||
`id` int NOT NULL AUTO_INCREMENT,
|
||||
`label` varchar(255) DEFAULT NULL,
|
||||
`amount` int DEFAULT NULL,
|
||||
`category` int DEFAULT NULL,
|
||||
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
|
||||
INSERT INTO `fine_types` (label, amount, category) VALUES
|
||||
('Äänimerkin väärinkäyttö', 30, 0),
|
||||
('Laiton jatkuvan linjan ylitys', 40, 0),
|
||||
('Ajaminen tien väärällä puolella', 250, 0),
|
||||
('Laiton U-käännös', 250, 0),
|
||||
('Laiton maastossa ajaminen', 170, 0),
|
||||
('Virkavallan käskyn laiminlyönti', 30, 0),
|
||||
('Laiton pysähtyminen', 150, 0),
|
||||
('Laiton parkkeeraus', 70, 0),
|
||||
('Väistöolovelvollisuuden laiminlyönti', 70, 0),
|
||||
('Väärän ajoneuvontiedon antaminen', 90, 0),
|
||||
('Stop merkin laiminlyönti', 105, 0),
|
||||
('Punaisten valojen laiminlyönti', 130, 0),
|
||||
('Laiton ohitus', 100, 0),
|
||||
('Laittomalla ajoneuvolla ajaminen', 100, 0),
|
||||
('Ajokortitta ajo', 1500, 0),
|
||||
('Yliajo', 800, 0),
|
||||
('Ylinopeus < 5 kmh', 90, 0),
|
||||
('Ylinopeus 5-15 kmh', 120, 0),
|
||||
('Ylinopeus 15-30 kmh', 180, 0),
|
||||
('Ylinopeus > 30 kmh', 300, 0),
|
||||
('Liikenteen pysäytys tahallisesti', 110, 1),
|
||||
('Julkinen päihtyminen', 90, 1),
|
||||
('Sopimaton käytös', 90, 1),
|
||||
('Oikeusjärjestelmän estäminen', 130, 1),
|
||||
('Siviilin loukkaaminen', 75, 1),
|
||||
('Virkavallan halventaminen', 110, 1),
|
||||
('Sanallainen uhkaus siviiliä kohtaan', 90, 1),
|
||||
('Sanallinen uhkaus virkavaltaa kohtaan', 150, 1),
|
||||
('Virheellisen tiedon antaminen', 250, 1),
|
||||
('Korruptioyritys', 1500, 1),
|
||||
('Aseella heiluminen kaupungin sisällä', 120, 2),
|
||||
('Tappavalla aseella heiluminen kaupungin sisällä', 300, 2),
|
||||
('Ei aselupaa', 600, 2),
|
||||
('Laittoman aseen hallusapito', 700, 2),
|
||||
('Murtotyökalujen hallussapito', 300, 2),
|
||||
('Autovarkaus', 1800, 2),
|
||||
('Tarkoitus myydä/levittää laitonta ainetta', 1500, 2),
|
||||
('Laittoman aineen valmistus', 1500, 2),
|
||||
('Laittoman aineen hallusapito ', 650, 2),
|
||||
('Siviilin kidnappaus', 1500, 2),
|
||||
('Virkavallan kidnappaus', 2000, 2),
|
||||
('Ryöstö', 650, 2),
|
||||
('Aseellinen kaupparyöstö', 650, 2),
|
||||
('Aseellinen pankkiryöstö', 1500, 2),
|
||||
('Siviiliä kohtaan kohdistunut hyökkäys', 2000, 3),
|
||||
('Virkavaltaa kohtaan kohdistunut hyökkäys', 2500, 3),
|
||||
('Siviilin murhanyritys', 3000, 3),
|
||||
('Virkavallan murhanyirtys', 5000, 3),
|
||||
('Siviilin murha', 10000, 3),
|
||||
('Virkavallan murha', 30000, 3),
|
||||
('Väkivaltainan tappo', 1800, 3),
|
||||
('Petos', 2000, 2);
|
||||
;
|
||||
@@ -0,0 +1,88 @@
|
||||
INSERT INTO `addon_account` (name, label, shared) VALUES
|
||||
('society_police', 'Police', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `datastore` (name, label, shared) VALUES
|
||||
('society_police', 'Police', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `addon_inventory` (name, label, shared) VALUES
|
||||
('society_police', 'Police', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `jobs` (name, label) VALUES
|
||||
('police', 'Police')
|
||||
;
|
||||
|
||||
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
|
||||
('police',0,'recruit','Recrue',20,'{}','{}'),
|
||||
('police',1,'officer','Officier',40,'{}','{}'),
|
||||
('police',2,'sergeant','Sergent',60,'{}','{}'),
|
||||
('police',3,'lieutenant','Lieutenant',85,'{}','{}'),
|
||||
('police',4,'boss','Chef',100,'{}','{}')
|
||||
;
|
||||
|
||||
CREATE TABLE `fine_types` (
|
||||
`id` int NOT NULL AUTO_INCREMENT,
|
||||
`label` varchar(255) DEFAULT NULL,
|
||||
`amount` int DEFAULT NULL,
|
||||
`category` int DEFAULT NULL,
|
||||
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
|
||||
INSERT INTO `fine_types` (label, amount, category) VALUES
|
||||
("Utilisation abusive d'un klaxon", 30, 0),
|
||||
("Traversée illégale d'une ligne continue", 40, 0),
|
||||
("Conduite sur la mauvaise voie de circulation", 250, 0),
|
||||
("Demi-tour illégal", 250, 0),
|
||||
("Conduite illégale hors piste", 170, 0),
|
||||
("Refus d'obéir à un ordre légal", 30, 0),
|
||||
("Arrêt illégal d'un véhicule", 150, 0),
|
||||
("Stationnement illégal", 70, 0),
|
||||
("Ne pas céder le passage à droite", 70, 0),
|
||||
("Non-respect des informations du véhicule", 90, 0),
|
||||
("Ne pas s'arrêter à un panneau d'arrêt", 105, 0),
|
||||
("Ne pas s'arrêter à un feu rouge", 130, 0),
|
||||
("Dépassement illégal", 100, 0),
|
||||
("Conduite d'un véhicule illégal", 100, 0),
|
||||
("Conduite sans permis", 1500, 0),
|
||||
("Délit de fuite", 800, 0),
|
||||
("Excès de vitesse de moins de 5 mph", 90, 0),
|
||||
("Excès de vitesse de 5 à 15 mph", 120, 0),
|
||||
("Excès de vitesse de 15 à 30 mph", 180, 0),
|
||||
("Excès de vitesse de plus de 30 mph", 300, 0),
|
||||
("Obstruction de la circulation", 110, 1),
|
||||
("Ivresse publique", 90, 1),
|
||||
("Comportement désordonné", 90, 1),
|
||||
("Obstruction de la justice", 130, 1),
|
||||
("Insultes envers les civils", 75, 1),
|
||||
("Irrespect envers un agent de police", 110, 1),
|
||||
("Menace verbale envers un civil", 90, 1),
|
||||
("Menace verbale envers un agent de police", 150, 1),
|
||||
("Fourniture de fausses informations", 250, 1),
|
||||
("Tentative de corruption", 1500, 1),
|
||||
("Exhibition d'une arme en zone urbaine", 120, 2),
|
||||
("Exhibition d'une arme mortelle en zone urbaine", 300, 2),
|
||||
("Pas de licence pour les armes à feu", 600, 2),
|
||||
("Possession d'une arme illégale", 700, 2),
|
||||
("Possession d'outils de cambriolage", 300, 2),
|
||||
("Vol de voiture", 1800, 2),
|
||||
("Intention de vendre/distribuer une substance illégale", 1500, 2),
|
||||
("Fabrication d'une substance illégale", 1500, 2),
|
||||
("Possession d'une substance illégale", 650, 2),
|
||||
("Enlèvement d'un civil", 1500, 2),
|
||||
("Enlèvement d'un agent de police", 2000, 2),
|
||||
("Vol à main armée", 650, 2),
|
||||
("Vol à main armée d'un magasin", 650, 2),
|
||||
("Vol à main armée d'une banque", 1500, 2),
|
||||
("Agression sur un civil", 2000, 3),
|
||||
("Agression sur un agent de police", 2500, 3),
|
||||
("Tentative de meurtre sur un civil", 3000, 3),
|
||||
("Tentative de meurtre sur un agent de police", 5000, 3),
|
||||
("Meurtre d'un civil", 10000, 3),
|
||||
("Meurtre d'un agent de police", 30000, 3),
|
||||
("Homicide involontaire", 1800, 3),
|
||||
("Fraude", 2000, 2);
|
||||
;
|
||||
@@ -0,0 +1,88 @@
|
||||
INSERT INTO `addon_account` (name, label, shared) VALUES
|
||||
('society_police', 'Polizia', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `datastore` (name, label, shared) VALUES
|
||||
('society_police', 'Polizia', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `addon_inventory` (name, label, shared) VALUES
|
||||
('society_police', 'Polizia', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `jobs` (name, label) VALUES
|
||||
('police', 'Polizia')
|
||||
;
|
||||
|
||||
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
|
||||
('police',0,'recruit','Recluta',20,'{}','{}'),
|
||||
('police',1,'officer','Agente',40,'{}','{}'),
|
||||
('police',2,'sergeant','Sergente',60,'{}','{}'),
|
||||
('police',3,'lieutenant','Tenente',85,'{}','{}'),
|
||||
('police',4,'boss','Capo',100,'{}','{}')
|
||||
;
|
||||
|
||||
CREATE TABLE `fine_types` (
|
||||
`id` int NOT NULL AUTO_INCREMENT,
|
||||
`label` varchar(255) DEFAULT NULL,
|
||||
`amount` int DEFAULT NULL,
|
||||
`category` int DEFAULT NULL,
|
||||
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
|
||||
INSERT INTO `fine_types` (label, amount, category) VALUES
|
||||
('Utilizzo improprio del clacson', 30, 0),
|
||||
('Attraversamento illegale di una linea continua', 40, 0),
|
||||
('Guida contromano', 250, 0),
|
||||
('Inversione di marcia illegale', 250, 0),
|
||||
('Guida illegale fuoristrada', 170, 0),
|
||||
('Rifiuto di un ordine di un LEO (Law Enforcement Officer)', 30, 0),
|
||||
('Arresto illegale di un veicolo', 150, 0),
|
||||
('Parcheggio illegale', 70, 0),
|
||||
('Mancata precedenza a destra', 70, 0),
|
||||
('Mancato rispetto delle informazioni sul veicolo', 90, 0),
|
||||
('Mancato arresto ad un segnale di stop', 105, 0),
|
||||
('Mancato arresto a un semaforo rosso', 130, 0),
|
||||
('Sorpasso illegale', 100, 0),
|
||||
('Guida di un veicolo illegale', 100, 0),
|
||||
('Guida senza patente', 1500, 0),
|
||||
('Investire e fuggire', 800, 0),
|
||||
('Eccesso di velocità oltre < 5 mph', 90, 0),
|
||||
('Eccesso di velocità oltre 5-15 mph', 120, 0),
|
||||
('Eccesso di velocità oltre 15-30 mph', 180, 0),
|
||||
('Eccesso di velocità oltre > 30 mph', 300, 0),
|
||||
('Ostacolo al flusso del traffico', 110, 1),
|
||||
('Ubriachezza molesta', 90, 1),
|
||||
('Comportamento disordinato', 90, 1),
|
||||
('Intralcio alla giustizia', 130, 1),
|
||||
('Insulti verso i civili', 75, 1),
|
||||
('Mancato rispetto nei confronti di un LEO (Law Enforcement Officer)', 110, 1),
|
||||
('Minaccia verbale verso un civile', 90, 1),
|
||||
('Minaccia verbale verso un LEO (Law Enforcement Officer)', 150, 1),
|
||||
('Fornito informazioni false', 250, 1),
|
||||
('Tentativo di corruzione', 1500, 1),
|
||||
('Sfoggiato un arma in città', 120, 2),
|
||||
('Sfoggiato un arma letale in città', 300, 2),
|
||||
('Assenza di licenza per porto d armi', 600, 2),
|
||||
('Possesso di un arma illegale', 700, 2),
|
||||
('Possesso di attrezzi per scasso', 300, 2),
|
||||
('Furto di un auto', 1800, 2),
|
||||
('Tentativo di vendita/distribuzione di una sostanza illegale', 1500, 2),
|
||||
('Falsificazione di una sostanza illegale', 1500, 2),
|
||||
('Possesso di una sostanza illegale', 650, 2),
|
||||
('Sequestro di un civile', 1500, 2),
|
||||
('Sequestro di un LEO (Law Enforcement Officer)', 2000, 2),
|
||||
('Rapina', 650, 2),
|
||||
('Rapina armata di un negozio', 650, 2),
|
||||
('Rapina armata di una banca', 1500, 2),
|
||||
('Aggressione a un civile', 2000, 3),
|
||||
('Aggressione a un LEO (Law Enforcement Officer)', 2500, 3),
|
||||
('Tentativo di omicidio di un civile', 3000, 3),
|
||||
('Tentativo di omicidio di un LEO (Law Enforcement Officer)', 5000, 3),
|
||||
('Omicidio di un civile', 10000, 3),
|
||||
('Omicidio di un LEO (Law Enforcement Officer)', 30000, 3),
|
||||
('Omicidio colposo', 1800, 3),
|
||||
('Frode', 2000, 2);
|
||||
;
|
||||
@@ -0,0 +1,62 @@
|
||||
INSERT INTO `addon_account` (name, label, shared) VALUES
|
||||
('society_police', 'Politie', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `datastore` (name, label, shared) VALUES
|
||||
('society_police', 'Politie', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `addon_inventory` (name, label, shared) VALUES
|
||||
('society_police', 'Politie', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `jobs` (name, label) VALUES
|
||||
('police', 'Politie')
|
||||
;
|
||||
|
||||
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
|
||||
('police',0,'aspirant','Aspirant',0,'{}','{}'),
|
||||
('police',1,'surveillant','Surveillant',0,'{}','{}'),
|
||||
('police',2,'agent','Agent',0,'{}','{}'),
|
||||
('police',3,'hoofdagent','Hoofdagent',0,'{}','{}'),
|
||||
('police',4,'brigadier','Brigadier',0,'{}','{}'),
|
||||
('police',5,'inspecteur','Inspecteur',0,'{}','{}'),
|
||||
('police',6,'hoofdinspecteur','Hoofdinspecteur',0,'{}','{}'),
|
||||
('police',7,'commissaris','Commissaris',0,'{}','{}'),
|
||||
('police',8,'hoofdcommissaris','Hoofdcommissaris',0,'{}','{}'),
|
||||
('police',9,'boss','Eerste Hoofdcommissaris',0,'{}','{}')
|
||||
;
|
||||
|
||||
CREATE TABLE `fine_types` (
|
||||
`id` int NOT NULL AUTO_INCREMENT,
|
||||
`label` varchar(255) DEFAULT NULL,
|
||||
`amount` int DEFAULT NULL,
|
||||
`category` int DEFAULT NULL,
|
||||
|
||||
PRIMARY KEY (`id`)
|
||||
);
|
||||
|
||||
INSERT INTO `fine_types` (label, amount, category) VALUES
|
||||
('Onnodig claxoneren', 90, 0),
|
||||
('Rijden over een doorgetrokken streep', 240, 0),
|
||||
('Tegen het verkeer in rijden', 140, 0),
|
||||
('Negeren keerverbod (u-turn)', 140, 0),
|
||||
('Niet opvolgen aanwijzing van bevoegd ambtenaar', 110, 0),
|
||||
('Fout parkeren', 95, 0),
|
||||
('Verkeerd voorsorteren', 240, 0),
|
||||
('Rijden met een WOK status ', 300, 0),
|
||||
('Door rood rijden', 240, 0),
|
||||
('Rijden zonder rijbewijs', 340, 0),
|
||||
('Snelheid overtreding < 10km', 112, 0),
|
||||
('Snelheid overtreding 10 - 20km', 202, 0),
|
||||
('Snelheid overtreding 20 - 50km', 670, 0),
|
||||
('Snelheid overtreding > 50km', 1000, 0),
|
||||
('Openbare dronkenschap', 415, 1),
|
||||
('Wanordelijk gedrag', 500, 1),
|
||||
('Hulpdiensten hinderen', 700, 1),
|
||||
('Belediging ambtenaar in functie', 200, 1),
|
||||
('Bedreiging', 980, 1),
|
||||
('Illegaal wapen bezit', 2300, 2),
|
||||
('Illegaal drugs bezit', 400, 2),
|
||||
('Drugshandel', 3000, 3)
|
||||
;
|
||||
@@ -0,0 +1,88 @@
|
||||
INSERT INTO `addon_account` (name, label, shared) VALUES
|
||||
('society_police', 'Police', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `datastore` (name, label, shared) VALUES
|
||||
('society_police', 'Police', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `addon_inventory` (name, label, shared) VALUES
|
||||
('society_police', 'Police', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `jobs` (name, label) VALUES
|
||||
('police', 'Police')
|
||||
;
|
||||
|
||||
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
|
||||
('police',0,'recruit','Posterunkowy',20,'{}','{}'),
|
||||
('police',1,'officer','Sierżant',40,'{}','{}'),
|
||||
('police',2,'sergeant','Aspirant',60,'{}','{}'),
|
||||
('police',3,'lieutenant','Komisarz',85,'{}','{}'),
|
||||
('police',4,'boss','Generalny Inspektor',100,'{}','{}')
|
||||
;
|
||||
|
||||
CREATE TABLE `fine_types` (
|
||||
`id` int NOT NULL AUTO_INCREMENT,
|
||||
`label` varchar(255) DEFAULT NULL,
|
||||
`amount` int DEFAULT NULL,
|
||||
`category` int DEFAULT NULL,
|
||||
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
|
||||
INSERT INTO `fine_types` (label, amount, category) VALUES
|
||||
('Nadużywanie klaksonu', 30, 0),
|
||||
('Przekroczenie lini ciągłej', 40, 0),
|
||||
('Jechanie po złej stronie drogi', 250, 0),
|
||||
('Nieprawidłowe zawracanie', 250, 0),
|
||||
('Nielegalna jazda Off-road', 170, 0),
|
||||
('Niedostosowanie się do poleceń Policji', 30, 0),
|
||||
('Nieprawidłowe zatrzymanie pojazdu', 150, 0),
|
||||
('Nieprawidłowe parkownie', 70, 0),
|
||||
('Niezastosowanie się do ruchu prawostronnego (jazda lewym pasem)', 70, 0),
|
||||
('Brak informacji o pojeździe', 90, 0),
|
||||
('Niezastosowanie się do znaku SOTP', 105, 0),
|
||||
('Niezatrzymanie się na czerwonym świetle', 130, 0),
|
||||
('Przechodzenie w niedozwolonym miejscu', 100, 0),
|
||||
('Jazda nielegalnym pojazdem', 100, 0),
|
||||
('Brak prawa jazdy', 1500, 0),
|
||||
('Ucieczka z miejsca zdarzenia', 800, 0),
|
||||
('Przekroczenie prędkości < 5 mph', 90, 0),
|
||||
('Przekroczenie prędkości 5-15 mph', 120, 0),
|
||||
('Przekroczenie prędkości 15-30 mph', 180, 0),
|
||||
('Przekroczenie prędkości > 30 mph', 300, 0),
|
||||
('Utrudnianie przemieszczania się', 110, 1),
|
||||
('Publiczne zgorszenie', 90, 1),
|
||||
('Niepoprawne zachowanie', 90, 1),
|
||||
('Utrudnianie postępowania', 130, 1),
|
||||
('Obraza cywilów', 75, 1),
|
||||
('Obraza graczy', 110, 1),
|
||||
('Groźby werbalne', 90, 1),
|
||||
('Przeklinanie na graczy', 150, 1),
|
||||
('Dostarczanie fałszywych informacji', 250, 1),
|
||||
('Próba korupcji', 1500, 1),
|
||||
('Wymachiwanie bronią w mieście', 120, 2),
|
||||
('Wymachiwanie niebezpieczną bronią w mieście', 300, 2),
|
||||
('Brak pozwolenia na broń', 600, 2),
|
||||
('Posiadanie nielegalnej broni', 700, 2),
|
||||
('Posiadanie narzędzi do włamań', 300, 2),
|
||||
('Złodziej - recydywista', 1800, 2),
|
||||
('Rozprowadzanie nielegalnych substancji', 1500, 2),
|
||||
('Wytwarzanie nielegalnych substancji', 1500, 2),
|
||||
('Posiadanie zakazanych substancji', 650, 2),
|
||||
('Porwanie cywila', 1500, 2),
|
||||
('Porwanie gracza', 2000, 2),
|
||||
('Rabunek', 650, 2),
|
||||
('Kradzież z bronią w ręku', 650, 2),
|
||||
('Napad na Bank', 1500, 2),
|
||||
('Atak na cywila', 2000, 3),
|
||||
('Atak na gracza', 2500, 3),
|
||||
('Próba morderstwa cywila', 3000, 3),
|
||||
('Próba morderstwa gracza', 5000, 3),
|
||||
('Zabójstwo cywila z premedytacją', 10000, 3),
|
||||
('Zabójstwo gracza z premedytacją', 30000, 3),
|
||||
('Nieumyślne spowodowanie śmierci', 1800, 3),
|
||||
('Oszustwo', 2000, 2);
|
||||
;
|
||||
@@ -0,0 +1,88 @@
|
||||
INSERT INTO `addon_account` (name, label, shared) VALUES
|
||||
('society_police', 'Policija', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `datastore` (name, label, shared) VALUES
|
||||
('society_police', 'Policija', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `addon_inventory` (name, label, shared) VALUES
|
||||
('society_police', 'Policija', 1)
|
||||
;
|
||||
|
||||
INSERT INTO `jobs` (name, label) VALUES
|
||||
('police', 'Policija')
|
||||
;
|
||||
|
||||
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
|
||||
('police',0,'recruit','Regrut',20,'{}','{}'),
|
||||
('police',1,'officer','Oficir',40,'{}','{}'),
|
||||
('police',2,'sergeant','Narednik',60,'{}','{}'),
|
||||
('police',3,'lieutenant','Poručnik',85,'{}','{}'),
|
||||
('police',4,'boss','Načelnik',100,'{}','{}')
|
||||
;
|
||||
|
||||
CREATE TABLE `fine_types` (
|
||||
`id` int NOT NULL AUTO_INCREMENT,
|
||||
`label` varchar(255) DEFAULT NULL,
|
||||
`amount` int DEFAULT NULL,
|
||||
`category` int DEFAULT NULL,
|
||||
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
|
||||
|
||||
INSERT INTO `fine_types` (label, amount, category) VALUES
|
||||
('Zloupotreba sirene', 30, 0),
|
||||
('Prelazak preko pune linije', 40, 0),
|
||||
('Vožnja u pogrešnom smeru', 250, 0),
|
||||
('Skretanje u U', 250, 0),
|
||||
('Vožnja van puta', 170, 0),
|
||||
('Odbijanje naredbe', 30, 0),
|
||||
('Ilegalno zaustavljanje vozila', 150, 0),
|
||||
('Ilegalno parkiranje', 70, 0),
|
||||
('Ne propuštanje udesno', 70, 0),
|
||||
('Netačne informacije o vozilu', 90, 0),
|
||||
('Ne zaustavljanje na STOP znak ', 105, 0),
|
||||
('Prolazak kroz crveno svetlo', 130, 0),
|
||||
('Ilegalni prolazak', 100, 0),
|
||||
('Vožnja ilegalnog vozila', 100, 0),
|
||||
('Vožnja bez vozačke dozvole', 1500, 0),
|
||||
('Bežanje sa mesta nesreće', 800, 0),
|
||||
('Prekoračenje brzine < 5 kmh', 90, 0),
|
||||
('Prekoračenje brzine 5-15 kmh', 120, 0),
|
||||
('Prekoračenje brzine 15-30 kmh', 180, 0),
|
||||
('Prekoračenje brzine > 30 kmh', 300, 0),
|
||||
('Ometanje saobraćaja', 110, 1),
|
||||
('Javna intoksikacija', 90, 1),
|
||||
('Napastvovanje', 90, 1),
|
||||
('Nepoštovanje suda', 130, 1),
|
||||
('Uvrede prema civilima', 75, 1),
|
||||
('Uvrede prema službenom licu', 110, 1),
|
||||
('Napad na civila', 90, 1),
|
||||
('Napad na službeno lice', 150, 1),
|
||||
('Davanje lažne izjave', 250, 1),
|
||||
('Pokušaj korupcije', 1500, 1),
|
||||
('Mahanje oružjem u gradu', 120, 2),
|
||||
('Mahanje smrtonosnim oružjem u gradu', 300, 2),
|
||||
('Posedovanje oružja bez dozvole', 600, 2),
|
||||
('Posedovanje ilegalnog oružja', 700, 2),
|
||||
('Posedovanje alata za provalu', 300, 2),
|
||||
('Luda vožnja', 1800, 2),
|
||||
('Pokušaj prodaje ilegalnih supstanci', 1500, 2),
|
||||
('Prodaja ilegalnih supstanci', 1500, 2),
|
||||
('Posedovanje ilegalnih supstanci ', 650, 2),
|
||||
('Kidnapovanje civila', 1500, 2),
|
||||
('Kidnapovanje službenog lica', 2000, 2),
|
||||
('Pljačka', 650, 2),
|
||||
('Oružana pljačka prodavnice', 650, 2),
|
||||
('Oružana pljačka banke', 1500, 2),
|
||||
('Oružani napad na civila', 2000, 3),
|
||||
('Oružani napad na službeno lice', 2500, 3),
|
||||
('Pokusaj ubistva civila', 3000, 3),
|
||||
('Pokusaj ubistva službenog lica', 5000, 3),
|
||||
('Ubistvo civila', 10000, 3),
|
||||
('Ubistvo službenog lica', 30000, 3),
|
||||
('Ubistvo bez predomišljaja', 1800, 3),
|
||||
('Prevara', 2000, 2);
|
||||
;
|
||||
Reference in New Issue
Block a user