Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
463
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.08 KB | None | 0 0
  1. USE `essentialmode`;
  2.  
  3. INSERT INTO `addon_account` (name, label, shared) VALUES
  4.     ('society_sheriff', 'Sheriff', 1)
  5. ;
  6.  
  7. INSERT INTO `datastore` (name, label, shared) VALUES
  8.     ('society_sheriff', 'Sheriff', 1)
  9. ;
  10.  
  11. INSERT INTO `addon_inventory` (name, label, shared) VALUES
  12.     ('society_sheriff', 'Sheriff', 1)
  13. ;
  14.  
  15. INSERT INTO `jobs` (name, label) VALUES
  16.     ('sheriff', 'Sheriff')
  17. ;
  18.  
  19. INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
  20.     ('sheriff',0,'recruit','Cadet',20,'{}','{}'),
  21.     ('sheriff',1,'officer','Deputy',40,'{}','{}'),
  22.     ('sheriff',2,'sergeant','Sergeant',60,'{}','{}'),
  23.     ('sheriff',3,'lieutenant','Lieutenant',85,'{}','{}'),
  24.     ('sheriff',4,'boss','Sheriff',100,'{}','{}')
  25. ;
  26.  
  27. CREATE TABLE `fine_types` (
  28.  
  29.     `id` int(11) NOT NULL AUTO_INCREMENT,
  30.     `label` varchar(255) DEFAULT NULL,
  31.     `amount` int(11) DEFAULT NULL,
  32.     `category` int(11) DEFAULT NULL,
  33.  
  34.     PRIMARY KEY (`id`)
  35. );
  36.  
  37. INSERT INTO `fine_types` (label, amount, category) VALUES
  38.     ('Misuse of a horn', 30, 0),
  39.     ('Illegally Crossing a continuous Line', 40, 0),
  40.     ('Driving on the wrong side of the road', 250, 0),
  41.     ('Illegal U-Turn', 250, 0),
  42.     ('Illegally Driving Off-road', 170, 0),
  43.     ('Refusing a Lawful Command', 30, 0),
  44.     ('Illegally Stopping a Vehicle', 150, 0),
  45.     ('Illegal Parking', 70, 0),
  46.     ('Failing to Yield to the right', 70, 0),
  47.     ('Failure to comply with Vehicle Information', 90, 0),
  48.     ('Failing to stop at a Stop Sign ', 105, 0),
  49.     ('Failing to stop at a Red Light', 130, 0),
  50.     ('Illegal Passing', 100, 0),
  51.     ('Driving an illegal Vehicle', 100, 0),
  52.     ('Driving without a License', 1500, 0),
  53.     ('Hit and Run', 800, 0),
  54.     ('Exceeding Speeds Over < 5 mph', 90, 0),
  55.     ('Exceeding Speeds Over 5-15 mph', 120, 0),
  56.     ('Exceeding Speeds Over 15-30 mph', 180, 0),
  57.     ('Exceeding Speeds Over > 30 mph', 300, 0),
  58.     ('Impeding traffic flow', 110, 1),
  59.     ('Public Intoxication', 90, 1),
  60.     ('Disorderly conduct', 90, 1),
  61.     ('Obstruction of Justice', 130, 1),
  62.     ('Insults towards Civilans', 75, 1),
  63.     ('Disrespecting of an LEO', 110, 1),
  64.     ('Verbal Threat towards a Civilan', 90, 1),
  65.     ('Verbal Threat towards an LEO', 150, 1),
  66.     ('Providing False Information', 250, 1),
  67.     ('Attempt of Corruption', 1500, 1),
  68.     ('Brandishing a weapon in city Limits', 120, 2),
  69.     ('Brandishing a Lethal Weapon in city Limits', 300, 2),
  70.     ('No Firearms License', 600, 2),
  71.     ('Possession of an Illegal Weapon', 700, 2),
  72.     ('Possession of Burglary Tools', 300, 2),
  73.     ('Grand Theft Auto', 1800, 2),
  74.     ('Intent to Sell/Distrube of an illegal Substance', 1500, 2),
  75.     ('Frabrication of an Illegal Substance', 1500, 2),
  76.     ('Possession of an Illegal Substance ', 650, 2),
  77.     ('Kidnapping of a Civilan', 1500, 2),
  78.     ('Kidnapping of an LEO', 2000, 2),
  79.     ('Robbery', 650, 2),
  80.     ('Armed Robbery of a Store', 650, 2),
  81.     ('Armed Robbery of a Bank', 1500, 2),
  82.     ('Assault on a Civilian', 2000, 3),
  83.     ('Assault of an LEO', 2500, 3),
  84.     ('Attempt of Murder of a Civilian', 3000, 3),
  85.     ('Attempt of Murder of an LEO', 5000, 3),
  86.     ('Murder of a Civilian', 10000, 3),
  87.     ('Murder of an LEO', 30000, 3),
  88.     ('Involuntary manslaughter', 1800, 3),
  89.     ('Fraud', 2000, 2);
  90. ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement