赞 | 35 |
VIP | 0 |
好人卡 | 0 |
积分 | 72 |
经验 | 0 |
最后登录 | 2024-11-11 |
在线时间 | 473 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 7223
- 在线时间
- 473 小时
- 注册时间
- 2021-12-4
- 帖子
- 511
|
Scene_Save.prototype.onSavefileOk = function() {
Scene_File.prototype.onSavefileOk.call(this);
$gameSystem.onBeforeSave();
var count = $gameVariables.value(1);
$gameVariables.setValue(1, ++count); // 位于 rpg_scenes.js 第 1707 行,上一行和本行为新增内容,变量1的值表示已存档次数,下一行的 count<=3&& 也为新增内容,表示只能存3次。
if (count <= 3 && DataManager.saveGame(this.savefileId())) {
this.onSaveSuccess();
} else {
this.onSaveFailure();
}
}; |
评分
-
查看全部评分
|