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
| local loadingScreenFinished = false | |
| local ready = false | |
| local guiEnabled = false | |
| local timecycleModifier = "hud_def_blur" | |
| ESX.SecureNetEvent("esx_identity:alreadyRegistered", function() | |
| while not loadingScreenFinished do | |
| Wait(100) | |
| end | |
| TriggerEvent("esx_skin:playerRegistered") |
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
| local loadingScreenFinished = false | |
| local ready = false | |
| local guiEnabled = false | |
| local timecycleModifier = "hud_def_blur" | |
| RegisterNetEvent('esx_identity:alreadyRegistered', function() | |
| while not loadingScreenFinished do Wait(100) end | |
| TriggerEvent('esx_skin:playerRegistered') | |
| end) |
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
| const { app, safeStorage } = require('electron'); | |
| const { join } = require('node:path'); | |
| const { readFileSync, writeFileSync } = require('node:fs'); | |
| const folder = join(app.getPath('appData'), 'Signal'); | |
| app.setPath('userData', folder); | |
| app.setName('Signal'); | |
| app.on('ready', () => { | |
| const configPath = join(folder, 'config.json'); |
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
| convertDatabase = function() | |
| local Items = {} | |
| local function newItem(data) | |
| data.weight = data.weight or 0 | |
| Items[data.name] = data | |
| end | |
| for type, data in pairs(lib.load('data.weapons')) do | |
| for k, v in pairs(data) do |
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
| $engine: 3 | |
| $onesync: on | |
| name: Qbox Project | |
| version: 1.0.0 | |
| author: The Community | |
| description: A FiveM core with a load of bloat. | |
| tasks: | |
| # Download Base Files | |
| - action: download_github |
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
| from datetime import datetime | |
| from playwright.sync_api import Playwright, sync_playwright | |
| def run(playwright: Playwright) -> None: | |
| # Define the URL of the login page and the target URL | |
| login_url = "https://<yourcompany>.unanet.biz/<yourcompany>/action/login/validate" | |
| target_url = "https://<yourcompany>.unanet.biz/<yourcompany>/action/home" | |
| logout_url = "https://<yourcompany>.unanet.biz/<yourcompany>/action/logout" | |
| # Set the login credentials |
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
| import argparse | |
| import json | |
| import re | |
| import requests | |
| from bs4 import BeautifulSoup | |
| parser = argparse.ArgumentParser(description='Extract data from arcadehighscores.com tables and save as JSON.') | |
| parser.add_argument('url', help='URL to extract data from') | |
| parser.add_argument('output_file', help='File name to save JSON output to') | |
| args = parser.parse_args() |