死神觉醒之灵魂冲击如何修改商店限购数量

死神觉醒之灵魂冲击如何修改商店限购数量

本站资源仅用于学习交流,禁止商业运营与违法、侵权等非法行为;资源下载后请于 24 小时内删除,违规后果由使用者自行承担。

修改商店限购数量

商店限购配置在 shop_assemble.json 文件中,通过修改 limited_number 字段调整玩家可购买次数上限。

文件位置

/data/publish_debug/config/shop_assemble.json

配置结构说明

该文件包含多个商店分类,每个商品条目中有两个关键字段:

"limited_type": "1",
"limited_number": "500"

参数含义

limited_type – 限购类型:

  • 0 – 不限购

  • 1 – 每日限购

  • 2 – 每周限购

  • 3 – 每月限购

limited_number – 可购买次数上限,例如 500 表示最多购买500次。

修改示例

修改金币商店第一个商品的限购数量,从500改为9999:

"gold_shop": [
    {
        "id": "1",
        "type": "",
        "currency_type": "",
        "currency_number": "",
        "limited_type": "1",
        "limited_number": "9999"
    },
    ...
]

修改补给商店第一个商品,取消限购:

"supplies_shop": [
    {
        "id": "1",
        "type": "",
        "currency_type": "",
        "currency_number": "",
        "limited_type": "0",
        "limited_number": "10"
    },
    ...
]

生效方式

修改完成后重启服务端生效。

© 版权声明
THE END
喜欢就支持一下吧
点赞35 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容