赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 0 |
最后登录 | 2018-10-25 |
在线时间 | 19 小时 |
Lv1.梦旅人
- 梦石
- 0
- 星屑
- 138
- 在线时间
- 19 小时
- 注册时间
- 2018-7-8
- 帖子
- 9
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
請問大家要如何阻止選項尚未選完
就繼續往下跑語法QQ
想讓他選完轉職才跑下面的$gameSwitches.value(8)判斷
可是就算拆成兩個腳本他還是給我偷跑了= =
$gameMessage.setChoices(['轉職','阻止'], 0, -1);
$gameMessage.setChoiceCallback(function (choice){
if(choice===0){$gameSwitches.setValue(8, true);};
if(choice===1){$gameScreen.showPicture(1, '001', 1, 400, 450, 100, 100, 255, 0);}}
);
if($gameSwitches.value(8) == true){
$gameScreen.tintPicture(1, [255,255,255,0], 120);
this.wait(120);
$gameScreen.showPicture(1, '002', 1, 400, 450, 100, 100, 255, 0);
$gameScreen.tintPicture(1, [255,255,255,0], 0);
$gameScreen.tintPicture(1, [0,0,0,0], 120);
this.wait(120);
}
$gameScreen.erasePicture(1); |
|