搜索
开启左侧

[有效回答] 翻译并保留源代码

[复制链接]
xiaozhou 发表于 2 小时前 | 显示全部楼层 |阅读模式

fx_version "bodacious"

game "gta5"
quiinooxgay "yes"
author "ANTIPORTAL"

-- https://discord.gg/KHf4HpQRFq

version "2.3.6"

shared_scripts {
    "config/_framework.lua",
    "config/police-stations/loader.lua",
    "config/translations/*.lua",
    "config/*.lua",
    "radio/config.lua",
    "custom/shared/*.lua",
}

-- https://discord.gg/KHf4HpQRFq

client_scripts {
    "utils/*.lua",
    "hooks/client.lua",
    "custom/framework/client/*.lua",
    "custom/client/actions.lua",
    "custom/client/clothing.lua",
    "custom/client/commands.lua",
    "custom/client/federal.lua",
    "custom/client/inventory.lua",
    "custom/client/menu.lua",
    "custom/client/rpol.lua",
    "custom/client/vehicles.lua",
    "custom/client/voice.lua",
    "custom/client/client_pay_bills.lua",
    "client/init.lua",
    "client/menu/*.lua",
    "client/*.lua",
    "radio/client/**/*.lua",
}

-- https://discord.gg/KHf4HpQRFq

server_scripts {
    'items.lua', -- qb auto add items
    "hooks/server.lua",
    "utils/FileManager.js",
    "server/middlewares/*.lua",
    "config/logs/logs.lua",
    "custom/server/ban.lua",
    "custom/server/database.lua",
    "custom/framework/server/*.lua",
    "custom/server/inventory.lua",
    "custom/server/rpol.lua",
    "custom/server/society.lua",
    "custom/server/vehicles.lua",
    "custom/server/menu/*.lua",
    "custom/server/federal.lua",
    "server/init.lua",
    "server/*.lua",
    "server/menu/*.lua",
    "radio/server/**/*.lua",
}

-- https://discord.gg/KHf4HpQRFq

ui_page 'html/index.html'

-- https://discord.gg/KHf4HpQRFq

files {
    "config/police-stations/*.json",
    'html/index.html',
    "html/apps/*.html",
    "html/components/*.html",
    'html/img/*.*',
    'html/img/webp/*.webp',
    'html/**/*.*',
    'html/sounds/*.*',
    "html/apps/*.html",
    "html/components/*.html",
    "html/css/*.css",
    "html/fonts/*.*",
    "html/js/*.js",
    "stream/*.ytyp",
   'html/mango-wall/lineicons.css',
   'html/mango-wall/dataTables.bootstrap5.min.css',
   'html/mango-wall/radar_level.png',
   'html/mango-wall/jquery.dataTables.min.js',
   'html/mango-wall/dataTables.bootstrap5.min.js',
   'html/css/mango-wall/blank-profile-picture-973460__340.png',
}

-- https://discord.gg/KHf4HpQRFq

data_file 'DLC_ITYP_REQUEST' 'stream/*.ytyp'

-- https://discord.gg/KHf4HpQRFq

provide {
    'qb-policejob'
}

-- https://discord.gg/KHf4HpQRFq

-- Escrow
lua54 'yes'

-- https://discord.gg/KHf4HpQRFq

dependencies {
    "pma-voice"
}

-- https://discord.gg/KHf4HpQRFq

escrow_ignore {
    "utils/mugshot.lua",
    "config/*.lua",
    "config/translations/*.lua",
    "config/logs/logs.lua",
    "custom/client/*.lua",
    "custom/client/menu/*.lua",
    "custom/framework/**/*.lua",
    "custom/shared/*.lua",
    "custom/server/*.lua",
    "custom/server/menu/*.lua",
    "server/tables.lua",
    "radio/config.lua",
    'items.lua'
}

-- https://discord.gg/KHf4HpQRFq

dependency '/assetpacks'
dependency '/assetpacks'




回复 论坛版权

使用道具 举报

ChatGPT 发表于 2 小时前 | 显示全部楼层
fx_version "bodacious"  -- FiveM的版本

game "gta5"  -- 游戏类型为GTA5
quiinooxgay "yes"  -- 自定义字段
author "ANTIPORTAL"  -- 作者

-- https://discord.gg/KHf4HpQRFq

version "2.3.6"  -- 插件版本

shared_scripts {
    "config/_framework.lua",  -- 框架配置
    "config/police-stations/loader.lua",  -- 警局站加载
    "config/translations/*.lua",  -- 翻译文件
    "config/*.lua",  -- 其他配置文件
    "radio/config.lua",  -- 无线电配置
    "custom/shared/*.lua",  -- 自定义共享脚本
}

-- https://discord.gg/KHf4HpQRFq

client_scripts {
    "utils/*.lua",  -- 工具函数
    "hooks/client.lua",  -- 客户端钩子
    "custom/framework/client/*.lua",  -- 自定义框架客户端脚本
    "custom/client/actions.lua",  -- 客户端动作脚本
    "custom/client/clothing.lua",  -- 客户端服装脚本
    "custom/client/commands.lua",  -- 客户端命令脚本
    "custom/client/federal.lua",  -- 客户端联邦相关脚本
    "custom/client/inventory.lua",  -- 客户端库存脚本
    "custom/client/menu.lua",  -- 客户端菜单脚本
    "custom/client/rpol.lua",  -- 客户端RPOL相关脚本
    "custom/client/vehicles.lua",  -- 客户端车辆脚本
    "custom/client/voice.lua",  -- 客户端语音脚本
    "custom/client/client_pay_bills.lua",  -- 客户端支付账单脚本
    "client/init.lua",  -- 客户端初始化脚本
    "client/menu/*.lua",  -- 客户端菜单脚本
    "client/*.lua",  -- 其他客户端脚本
    "radio/client/**/*.lua",  -- 无线电客户端脚本
}

-- https://discord.gg/KHf4HpQRFq

server_scripts {
    'items.lua', -- qb 自动添加物品
    "hooks/server.lua",  -- 服务器钩子
    "utils/FileManager.js",  -- 文件管理工具
    "server/middlewares/*.lua",  -- 服务器中间件
    "config/logs/logs.lua",  -- 日志配置
    "custom/server/ban.lua",  -- 服务器禁用相关脚本
    "custom/server/database.lua",  -- 数据库相关脚本
    "custom/framework/server/*.lua",  -- 自定义框架服务器脚本
    "custom/server/inventory.lua",  -- 服务器库存脚本
    "custom/server/rpol.lua",  -- 服务器RPOL相关脚本
    "custom/server/society.lua",  -- 社会相关脚本
    "custom/server/vehicles.lua",  -- 服务器车辆脚本
    "custom/server/menu/*.lua",  -- 服务器菜单脚本
    "custom/server/federal.lua",  -- 服务器联邦相关脚本
    "server/init.lua",  -- 服务器初始化脚本
    "server/*.lua",  -- 其他服务器脚本
    "server/menu/*.lua",  -- 服务器菜单脚本
    "radio/server/**/*.lua",  -- 无线电服务器脚本
}

-- https://discord.gg/KHf4HpQRFq

ui_page 'html/index.html'  -- 界面页面

-- https://discord.gg/KHf4HpQRFq

files {
    "config/police-stations/*.json",  -- 警局站JSON配置文件
    'html/index.html',  -- HTML主页
    "html/apps/*.html",  -- 应用页面
    "html/components/*.html",  -- 组件HTML文件
    'html/img/*.*',  -- 图片文件
    'html/img/webp/*.webp',  -- webP格式图片
    'html/**/*.*',  -- 其他HTML文件
    'html/sounds/*.*',  -- 声音文件
    "html/apps/*.html",  -- 应用页面
    "html/components/*.html",  -- 组件HTML文件
    "html/css/*.css",  -- CSS文件
    "html/fonts/*.*",  -- 字体文件
    "html/js/*.js",  -- JavaScript文件
    "stream/*.ytyp",  -- 流文件
   'html/mango-wall/lineicons.css',  -- Mango墙的图标样式表
   'html/mango-wall/dataTables.bootstrap5.min.css',  -- 数据表样式表
   'html/mango-wall/radar_level.png',  -- 雷达级别图片
   'html/mango-wall/jquery.dataTables.min.js',  -- jQuery数据表插件
   'html/mango-wall/dataTables.bootstrap5.min.js',  -- 数据表Bootstrap插件
   'html/css/mango-wall/blank-profile-picture-973460__340.png',  -- 默认头像图片
}

-- https://discord.gg/KHf4HpQRFq

data_file 'DLC_ITYP_REQUEST' 'stream/*.ytyp'  -- 数据请求文件类型

-- https://discord.gg/KHf4HpQRFq

provide {
    'qb-policejob'  -- 提供警察工作功能
}

-- https://discord.gg/KHf4HpQRFq

-- Escrow
lua54 'yes'  -- 使用Lua 5.4的支持

-- https://discord.gg/KHf4HpQRFq

dependencies {
    "pma-voice"  -- 依赖的语音插件
}

-- https://discord.gg/KHf4HpQRFq

escrow_ignore {
    "utils/mugshot.lua",  -- 忽略的文件
    "config/*.lua",  -- 配置文件
    "config/translations/*.lua",  -- 翻译文件
    "config/logs/logs.lua",  -- 日志配置
    "custom/client/*.lua",  -- 客户端自定义脚本
    "custom/client/menu/*.lua",  -- 客户端菜单脚本
    "custom/framework/**/*.lua",  -- 自定义框架脚本
    "custom/shared/*.lua",  -- 自定义共享脚本
    "custom/server/*.lua",  -- 服务器自定义脚本
    "custom/server/menu/*.lua",  -- 服务器菜单脚本
    "server/tables.lua",  -- 服务表
    "radio/config.lua",  -- 无线电配置
    'items.lua'  -- 物品文件
}

-- https://discord.gg/KHf4HpQRFq

dependency '/assetpacks'  -- 依赖资产包
dependency '/assetpacks'  -- 再次依赖资产包
回复

使用道具 举报

文明发言,和谐互动
文明发言,和谐互动
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|FiveM技术教程分享 ( 冀ICP备2021005225号-1 ) |网站地图

GMT+8, 2025-9-18 03:43 , Processed in 0.045342 second(s), 9 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

© 2001-2013 ELITE论坛【技术无价-分享快乐】

快速回复 返回顶部 返回列表