Project1

标题: 怎么获取选项的索引? [打印本页]

作者: 入坑小萌新    时间: 2023-2-18 22:45
标题: 怎么获取选项的索引?

有什么办法在选项选择完后

获取 选择的 是哪个选项 和选项标题

不是在选项中获取

如 a b c d 四个选项

1 a
xxx
2 b

3 c

4 d

选项结束后↓

获取 上面选项的是哪个选项,和选项标题


作者: 天一教主    时间: 2023-2-18 22:45
  1. var _ex_Game_Interpreter_setupChoices = Game_Interpreter.prototype.setupChoices
  2. Game_Interpreter.prototype.setupChoices = function(params) {
  3.     _ex_Game_Interpreter_setupChoices.call(this, params);
  4.     this.choicesBak = params[0].clone();
  5. };

  6. Game_Interpreter.prototype.showChoice = function() {
  7.     var index = this._branch[0];
  8.     var item = this.choicesBak[index];
  9.     return item;
  10. };
复制代码

索引 this._branch[0] 选项文本 this.showChoice()
作者: RyanYe    时间: 2023-2-19 09:43
如果玩家选择取消呢
作者: 任小雪    时间: 2023-2-19 14:39
加一个确定按钮(狗头)——也或许还得弄一个插件
作者: RyanYe    时间: 2023-2-20 03:05
如果是获取取消索引那么简单的话,我感觉就事件就可以解决?

比如玩家选的是选项1,那么你就在选项1里写个事件命令:变量xx=选项1的名称
其他选项以此类推
不知道这样可以吗。。




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1