赞 | 35 |
VIP | 0 |
好人卡 | 0 |
积分 | 73 |
经验 | 0 |
最后登录 | 2024-11-22 |
在线时间 | 475 小时 |
Lv4.逐梦者
- 梦石
- 0
- 星屑
- 7294
- 在线时间
- 475 小时
- 注册时间
- 2021-12-4
- 帖子
- 514
|
编辑器层面是改不了的,要想曲线救国有两个办法:
一是直接修改 json 文件中 "code":231~235 的事件指令的 "parameters" 数组的第 0 项,
二是,修改 Game_Interpreter.prototype.command231到command235 的脚本,使得它们给 params[0] 额外增加一个偏移量,比如某个值为整百数的变量。
以 233 和 235 为例:
// Rotate Picture
Game_Interpreter.prototype.command233 = function(params) {
$gameScreen.rotatePicture(params[0] + $gameVariables.value(1), params[1]); // 变量 1 的值如果是 100,那么编辑器中的 1-100 号图片就会在这里视为 101-200 号
return true;
};
// Erase Picture
Game_Interpreter.prototype.command235 = function(params) {
$gameScreen.erasePicture(params[0] + $gameVariables.value(1)); // 同上
return true;
}; |
|