赞 | 2 |
VIP | 50 |
好人卡 | 23 |
积分 | 1 |
经验 | 15845 |
最后登录 | 2018-11-11 |
在线时间 | 306 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 60
- 在线时间
- 306 小时
- 注册时间
- 2014-8-5
- 帖子
- 416
|
本帖最后由 夏末渐离 于 2016-2-18 09:53 编辑
- /*:
- * @author 夏末渐离
- * @help
- * 需为UTF8编码
- * 使用插件指令RandomSwitch即可打开一个在101-250范围的随机开关
- * 并且把每次改变的开关ID记录到150号变量的值
- */
- (function(){
- var GetRandomNum=function(Min,Max)
- {
- var Range = Max - Min;
- var Rand = Math.random();
- return(Min + Math.round(Rand * Range));
- };
- var XM_openRandomSwitches=function(){
- var currentNum=GetRandomNum(101,250);
- $gameVariables.setValue(150,currentNum);
- $gameSwitches.setValue(currentNum,true);
- };
- var XM_160218_pluginCommand=Game_Interpreter.prototype.pluginCommand;
- Game_Interpreter.prototype.pluginCommand = function(command, args) {
- XM_160218_pluginCommand.call(this,command,args);
- if(command=="RandomSwitch")
- XM_openRandomSwitches();
- };
- }());
复制代码 |
|