设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 1691|回复: 3
打印 上一主题 下一主题

[有事请教] 求一个单独破除物品上限的插件

[复制链接]

Lv1.梦旅人

梦石
0
星屑
178
在线时间
21 小时
注册时间
2022-6-9
帖子
3
跳转到指定楼层
1
发表于 2022-11-4 00:03:28 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
求一个单独破除物品上限的插件,不要YEP_CoreEngine,不兼容

Lv4.逐梦者

梦石
0
星屑
7289
在线时间
475 小时
注册时间
2021-12-4
帖子
514
2
发表于 2022-11-4 20:34:38 | 只看该作者
Game_Party.prototype.gold = function() {
    return this._gold;
};
Game_Party.prototype.gainGold = function(amount) {
    this._gold = (this._gold + amount).clamp(0, this.maxGold());
};
Game_Party.prototype.loseGold = function(amount) {
    this.gainGold(-amount);
};
Game_Party.prototype.maxGold = function() {
    return 99999999;
};
Game_Party.prototype.steps = function() {
    return this._steps;
};
Game_Party.prototype.increaseSteps = function() {
    this._steps++;
};
Game_Party.prototype.numItems = function(item) {
    const container = this.itemContainer(item);
    return container ? container[item.id] || 0 : 0;
};
Game_Party.prototype.maxItems = function(item) {
    return 99; // 甚至可以根据item.id为不同道具设置不同的上限
};
Game_Party.prototype.hasMaxItems = function(item) {
    return this.numItems(item) >= this.maxItems(item);
};
有什么插件的必要么,rmmz_objects.js第5600行,金钱上限和道具上限都在这里了。
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
178
在线时间
21 小时
注册时间
2022-6-9
帖子
3
3
 楼主| 发表于 2022-11-4 23:05:56 | 只看该作者
小秋橙 发表于 2022-11-4 20:34
Game_Party.prototype.gold = function() {
    return this._gold;
};

谢谢,已经成功了
回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
145
在线时间
11 小时
注册时间
2022-11-21
帖子
56
4
发表于 2023-3-28 16:53:08 | 只看该作者
大佬给力啊
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-22 22:16

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

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