各位谁能帮忙找找ESX能在服务器里注册完角色后可以更换性别的捏脸插件, 十分感谢!:)
Yann 站长 管理成员 GTAOS管理组 认证卖家 认证用户本 月 名 人 榜 最 佳 2024/09/04 #4 esx_core/[core]/esx_skin/server/main.lua at c80916c3e3b14e3cfce6102801b382e59c49bd27 · esx-framework/esx_core Official Repo For core resources for esx-legacy. Contribute to esx-framework/esx_core development by creating an account on GitHub. github.com 把上面定位的这一行上面一行的admin改成user 然后在游戏内使用skin就可以让玩家更改性别了,你可以试试 效果: lua: ESX.RegisterCommand("skin", "user", function(xPlayer) xPlayer.triggerEvent("esx_skin:openSaveableMenu") end, false, { help = TranslateCap("skin") })
esx_core/[core]/esx_skin/server/main.lua at c80916c3e3b14e3cfce6102801b382e59c49bd27 · esx-framework/esx_core Official Repo For core resources for esx-legacy. Contribute to esx-framework/esx_core development by creating an account on GitHub. github.com 把上面定位的这一行上面一行的admin改成user 然后在游戏内使用skin就可以让玩家更改性别了,你可以试试 效果: lua: ESX.RegisterCommand("skin", "user", function(xPlayer) xPlayer.triggerEvent("esx_skin:openSaveableMenu") end, false, { help = TranslateCap("skin") })
Yann 站长 管理成员 GTAOS管理组 认证卖家 认证用户本 月 名 人 榜 最 佳 2024/09/04 #6 qialihar 说: 浏览附件2624我刚加这个插件,输入/SKIN提示这个报错,版主,这是什么情况? 点击展开... 让你改没人让你随便加
Yann 站长 管理成员 GTAOS管理组 认证卖家 认证用户本 月 名 人 榜 最 佳 2024/09/04 #8 qialihar 说: 我之前没有这个插件, /SKIN 点击展开... 不是?你没有esx_core这个插件???那你这个怎么算是esx框架!哈哈哈
渐变_ 用户 认证用户 2024/09/04 #9 Yann 说: 不是?你没有esx_core这个插件???那你这个怎么算是esx框架!哈哈哈 点击展开... 我说我没有ESX_SKIN,刚才从新装的。
Yann 站长 管理成员 GTAOS管理组 认证卖家 认证用户本 月 名 人 榜 最 佳 2024/09/04 #10 qialihar 说: 我说我没有ESX_SKIN,刚才从新装的。 点击展开... 嗷嗷,见谅,没倒腾过esx,要回答你问题得现学现卖。 任何客户端文件添加下列代码 直接把最后一个参数弄成false lua: ESX.RegisterCommand("skin", "user", function(xPlayer) xPlayer.triggerEvent("esx_skin:openSaveableMenu") end, false, false) 最后编辑: 2024/09/04
qialihar 说: 我说我没有ESX_SKIN,刚才从新装的。 点击展开... 嗷嗷,见谅,没倒腾过esx,要回答你问题得现学现卖。 任何客户端文件添加下列代码 直接把最后一个参数弄成false lua: ESX.RegisterCommand("skin", "user", function(xPlayer) xPlayer.triggerEvent("esx_skin:openSaveableMenu") end, false, false)
Yann 站长 管理成员 GTAOS管理组 认证卖家 认证用户本 月 名 人 榜 最 佳 2024/09/04 #11 再不行就在 https://github.com/iLLeniumStudios/...e03/client/framework/esx/compatibility.lua#L5 最后一行添加代码 lua: RegisterCommand("skin", function(source, args, rawCommand) if (source > 0) then InitializeCharacter(Framework.GetGender(true)) end end, false)
再不行就在 https://github.com/iLLeniumStudios/...e03/client/framework/esx/compatibility.lua#L5 最后一行添加代码 lua: RegisterCommand("skin", function(source, args, rawCommand) if (source > 0) then InitializeCharacter(Framework.GetGender(true)) end end, false)