项目

一般

简介

CheckDrillHoleCount » 历史记录 » 版本 1

machenhe, 2022-05-11 11:23

1 1 machenhe
_*%{color:green}checkDrillHoleCount%*_
2
检测指定装备位装备已打孔数量,是否满足条件
3
4
标签:命令定义|checkDrillHoleCount
5
6
*格式*
7
|_.命令名		|_.参数1	|_.参数2|_.参数3|
8
|checkDrillHoleCount	|装备位id	|比较符	|比较值	|
9
10
*说明*
11
* 参数1: 装备位id
12
** 0-16 指定id装备位中的道具
13
参见 *[[装备位置|装备位id说明]]*
14
** -1
15
当前打开的自定义道具栏中的道具
16
当前拾取道具
17
18
* 参数2: 比较符(> < =)
19
20
* 参数3: 比较值(整数)
21
22
-
23
-
24
25
*%{color:deepskyblue}特戒引擎脚本示例:%*
26
27
bq. [@main]
28
#if
29
[[equal]] <$dress>
30
#act
31
[[messageBox]] 请穿戴衣服后测试
32
break
33
&nbsp;
34
#if
35
#say
36
<衣服打孔/<notextile>@</notextile>打孔>\\ \\
37
<打孔检测/<notextile>@</notextile>打孔检测>\\ \\
38
<打孔数量检测/<notextile>@</notextile>打孔数量检测>\\ \\
39
&nbsp;
40
[<notextile>@</notextile>打孔]
41
#if
42
#act
43
[[drillHole]] <notextile> * * 0 * * 0 * 1 * *</notextile>
44
messageBox 装备位衣服_0号孔位_打孔成功
45
&nbsp;
46
[<notextile>@</notextile>打孔检测]
47
#if
48
*{color:green}checkDrillHole* 0 0
49
#act
50
messageBox 装备位衣服_0号孔位_已打孔
51
&nbsp;
52
[<notextile>@</notextile>打孔数量检测]
53
#if
54
[[checkDrillHoleCount]] 0 = 1
55
#act
56
messageBox 装备位衣服_打孔数量_等于1
57
&nbsp;
58
#if
59
checkDrillHoleCount 0 > 1
60
#act
61
messageBox 装备位衣服_打孔数量_大于1
62
&nbsp;
63
#if
64
checkDrillHoleCount 0 < 1
65
#act
66
messageBox 装备位衣服_打孔数量_小于1