rp_core (sessions, scrypt auth, self-written MySQL-wire driver rp_db), county-records NUI: residency-file auth, identity-record character intake, survey-grid spawn, procedural night-city loading screen. Secrets replaced with .example files. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
27 lines
654 B
Lua
27 lines
654 B
Lua
fx_version 'cerulean'
|
|
game 'gta5'
|
|
|
|
name 'rp_loading'
|
|
description 'Loading screen: procedural night-city flyover, real load progress, synthesised ambience'
|
|
author 'Los Santos RP'
|
|
version '1.0.0'
|
|
|
|
loadscreen 'html/index.html'
|
|
|
|
-- The screen stays up after the game has finished loading so the client can
|
|
-- hand over to the in-game camera without a black frame in between.
|
|
loadscreen_manual_shutdown 'yes'
|
|
|
|
-- Needed for the volume fader to be usable.
|
|
loadscreen_cursor 'yes'
|
|
|
|
files {
|
|
'html/index.html',
|
|
'html/tokens.css',
|
|
'html/app.css',
|
|
'html/app.js',
|
|
'html/fonts/archivo.woff2',
|
|
'html/fonts/plex-400.woff2',
|
|
'html/fonts/plex-500.woff2',
|
|
}
|