39 lines
748 B
Lua
39 lines
748 B
Lua
fx_version 'bodacious'
|
|
games {'gta5'}
|
|
|
|
-- Resource stuff
|
|
name 'Fire Hose'
|
|
description 'Dynamic Fire Hose Script By ToxicScripts'
|
|
version 'v1'
|
|
author 'Toxic Scripts'
|
|
|
|
-- Adds additional logging, useful when debugging issues.
|
|
client_debug_mode 'false'
|
|
server_debug_mode 'false'
|
|
|
|
-- Leave this set to '0' to prevent compatibility issues
|
|
-- and to keep the save files your users.
|
|
experimental_features_enabled '0'
|
|
|
|
ui_page 'html/ui.html'
|
|
|
|
files {
|
|
'settings/*.ini',
|
|
'html/reset.css',
|
|
'html/main.css',
|
|
'html/app.js',
|
|
'html/ui.html',
|
|
'html/sounds/*.ogg',
|
|
}
|
|
|
|
-- Files & scripts
|
|
shared_script 'config.lua'
|
|
|
|
client_scripts {
|
|
'FireHose.net.dll',
|
|
'client.lua'
|
|
}
|
|
server_scripts {
|
|
'FireHoseServer.net.dll',
|
|
'server.lua'
|
|
} |