找回密码
 register

QQ登录

只需一步,快速开始

查看: 78|回复: 0

[游戏教程] 取消客户端单次最大兑换点数1000的限制

[复制链接]

[游戏教程] 取消客户端单次最大兑换点数1000的限制

[复制链接]
  • 打卡等级:热心大叔
  • 打卡总天数:94
  • 打卡月天数:17
  • 打卡总奖励:94
  • 最近打卡:2025-01-18 01:28:20
Waylee

主题

0

回帖

1万

积分

仙帝

积分
12364
Waylee 2022-12-31 20:03 | 显示全部楼层 |阅读模式

马上注册,查看网站隐藏内容!!

您需要 登录 才可以下载或查看,没有账号?register

×
教程编写人员:“雪舞”
编写时间:2022-03-08
完成效果:

555.jpg


客户端修改:

找到\Interface\YuanbaoExchange\YuanbaoExchange.layout.xml的代码:
<Window Type="TLBB_EditBoxNormal" Name="YuanbaoExchange_Moral_Value">
   <Property Name="AbsolutePosition" Value="x:35.000000 y:77.000000" />
    <Property Name="UnifiedSize" Value="{{1.0,-120.000000},{0.000000,20.000000}" />
    <Property Name="MaxTextLength" Value="5" />
    <Property Name="ValidationString" Value="[0-9]*" />
    <Event Name="TextChanged" Function="YuanbaoExchange_Count_Change();" />
</Window>

<Property Name="MaxTextLength" Value="4" /> 
修改为
 <Property Name="MaxTextLength" Value="5" />

找到\Interface\YuanbaoExchange\YuanbaoExchange.lua 修改:
function YuanbaoExchange_Max_Clicked()
    local maxYuanBao = 1000;
    local point2YuanBao = g_Point
    if point2YuanBao < 0 then point2YuanBao = 0; end
    
    YuanbaoExchange_Moral_Value:SetProperty("ClearOffset", "True");
    if point2YuanBao > maxYuanBao then
        YuanbaoExchange_Moral_Value:SetText(tostring(maxYuanBao));
    else
        YuanbaoExchange_Moral_Value:SetText(tostring(point2YuanBao));
    end
    YuanbaoExchange_Moral_Value:SetProperty("CaratIndex", 1024);
end

local maxYuanBao = 1000; 改为local maxYuanBao = 10000;

if tonumber(str) > 1000 then
    PushDebugMessage("每次兑换的元宝数量最多为1000点,请输入小于等于1000点的数字。")
    return
end

改为
if tonumber(str) > 10000 then
    PushDebugMessage("每次兑换的元宝数量最多为1000点,请输入小于等于10000点的数字。")
    return
end



您需要登录后才可以回帖 登录 | register

本版积分规则

雪舞知识库 | 浙ICP备15015590号-1 | 萌ICP备20232229号|浙公网安备33048102000118号 |天天打卡

GMT+8, 2025-1-19 19:37 , Processed in 0.113337 second(s), 9 queries , Redis On.

Powered by XueWu Licensed

Copyright © Tencent Cloud.

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