项目

一般

简介

CheckItemUpgradeCount » 历史记录 » 版本 1

machenhe, 2022-05-11 11:16

1 1 machenhe
_*%{color:green}checkItemUpgradeCount%*_
2
检测指定装备位装备,星星数量是否满足条件
3
4
标签:命令定义|checkItemUpgradeCount
5
6
*格式*
7
|命令名			|参数1		|参数2		|参数3	|参数4	|
8
|checkItemUpgradeCount	|检测标识	|装备位id	|比较符	|比较值	|
9
10
*说明*
11
* 参数1: 检测标识
12
** 0 表示检测[[自定义道具栏]]
13
参数1=0时,参数2无效
14
** 1 表示检测参数2指定装备位
15
16
* 参数2: 装备位id
17
** 0-16 指定id装备位中的道具
18
参见 *[[装备位置|装备位id说明]]*
19
** -1
20
当前打开的自定义道具栏中的道具
21
当前拾取道具
22
23
* 参数3: 比较符(> < =)
24
25
* 参数4: 比较值
26
27
-
28
-
29
30
*%{color:deepskyblue}特戒引擎脚本示例:%*
31
32
bq. [<notextile>@</notextile>main]
33
#say
34
<衣服加星/<notextile>@</notextile>衣服星数(1)>\\ \\
35
<衣服减星/<notextile>@</notextile>衣服星数(2)>\\ \\
36
<取衣服星数/<notextile>@</notextile>衣服星数(3)>\\ \\
37
<星数检测/<notextile>@</notextile>星数检测>\\ \\
38
&nbsp;
39
<查看衣服tips/<notextile>@</notextile>查看>\\ \\
40
&nbsp;
41
[<notextile>@</notextile>衣服星数]
42
#if
43
[[equal]] [[装备位置|<$dress>]]
44
#act
45
[[sendMsg]] 6 未穿戴衣服,穿上再试试
46
break
47
&nbsp;
48
#if
49
equal <$scriptParam1> 1
50
#act
51
[[changeItemUpgradeCount]] 0 = 1
52
sendMsg 6 衣服星数设定为--1
53
&nbsp;
54
#if
55
equal <$scriptParam1> 2
56
#act
57
changeItemUpgradeCount 0 = 0
58
sendMsg 6 衣服星数设定为--0
59
&nbsp;
60
#if
61
equal <$scriptParam1> 3
62
#act
63
[[getItemStarNum]] 0 s0
64
sendMsg 6 取回衣服星数为--<$str(s0)>
65
&nbsp;
66
[<notextile>@</notextile>查看]
67
#act
68
openSysUi 1 0
69
&nbsp;
70
[<notextile>@</notextile>星数检测]
71
#if
72
*%{color:green}checkItemUpgradeCount%* 1 0 > 1
73
#act
74
sendMsg 6 检测衣服星数-->1
75
#elseAct
76
sendMsg 6 检测衣服星数--不大于1