This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Spawns dropped weapons and adds random attachments. | |
-- List of weapons to add | |
local weapons = { | |
{ | |
name = "M98B", | |
container = "Weapons/Model98B/U_M98B", | |
slot = WeaponSlot.WeaponSlot_0, | |
attachments = { | |
optics = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isAuthorized(door) | |
local checkID = false | |
local employed = true | |
if not ESX then | |
return false | |
end | |
if not ESX.PlayerData.job or (ESX.PlayerData.job and ESX.PlayerData.job.name == 'unemployed') then | |
employed = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | |
-- Automatic Gate 1 | |
-- | |
{ | |
objHash = -2125423493, | |
objHeading = 5.000, | |
objCoords = vector3(-1474.12900, 68.38937, 52.52709), | |
textCoords = vector3(-1471.15, 68.99, 54.32), | |
authorizedJobs = {}, | |
locked = true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Eurogamer Anti-adblock | |
// @namespace eg | |
// @include http://www.eurogamer.net/articles/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
var db = document.body, interval, modal = false; |