赞 | 2 |
VIP | 0 |
好人卡 | 3 |
积分 | 20 |
经验 | 719 |
最后登录 | 2024-8-23 |
在线时间 | 857 小时 |
Lv3.寻梦者
- 梦石
- 0
- 星屑
- 1989
- 在线时间
- 857 小时
- 注册时间
- 2008-7-26
- 帖子
- 266
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
JS插件里的代码可以直接运行插件命令吗?
// \nは改行マーク。\\c[1]は文章上の文字カラー変更の制御文字と同じです。(¥c[1])
// ほかの制御文字もほとんど使うことができます(ウェイトなどは使えません)。
this._helpText =
"Return to the title screen?\n\\c[1](Your progress will not be saved.)\\c[0]";
this._yesMethod = this.onTitleOk.bind(this);.bind(this);
break;
case '_comQLoad':
this._helpText =
"Do you want to Quickload?\n\\c[1](Your progress will not be saved.)\\c[0]";
this._yesMethod = this.onQloadOk.bind(this);
break;
}
};
这个是一个JS插件里的代码,我想在
"Return to the title screen?\n\\c[1](Your progress will not be saved.)\\c[0]";
this._yesMethod = this.onTitleOk.bind(this);.bind(this);
break; 这里把this.onTitleOk.;改成可以运行YEP_X_MessageBacklog 插件命令OpenMessageBacklog,这样可能吗 |
|