赞 | 160 |
VIP | 0 |
好人卡 | 0 |
积分 | 266 |
经验 | 0 |
最后登录 | 2025-1-13 |
在线时间 | 5404 小时 |
Lv5.捕梦者
- 梦石
- 0
- 星屑
- 26643
- 在线时间
- 5404 小时
- 注册时间
- 2016-3-8
- 帖子
- 1660
|
本帖最后由 alexncf125 于 2021-6-27 17:03 编辑
https://rpg.blue/thread-486113-1-1.html
相同原理
至于如何判定身上有某个状态,
(function(){
var Game_Player_getInputDirection = Game_Player.prototype.getInputDirection;
Game_Player.prototype.getInputDirection = function() {
if (Input.dir4 > 0 && $gameParty.leader.isStateAffected(123)){
return 10 - Input.dir4;
};
Game_Player_getInputDirection.call(this);
};
})();
p.s.你没说判定谁的身上, 我这选的判定队长 |
|