CheckSocketableItemCount » 历史记录 » 版本 1
machenhe, 2022-05-11 13:11
1 | 1 | machenhe | _*%{color:green}checkSocketableItemCount%*_ |
---|---|---|---|
2 | 检测指定装备位中装备镶嵌宝石数量是否满足条件 |
||
3 | |||
4 | 标签:命令定义|checkSocketableItemCount |
||
5 | |||
6 | *格式* |
||
7 | |_.命令名 |_.参数1 |_.参数2|_.参数3| |
||
8 | |checkSocketableItemCount |装备位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. [<notextile>@</notextile>main] |
||
28 | #if |
||
29 | [[equal]] <$dress> |
||
30 | #act |
||
31 | [[messageBox]] 请穿戴衣服后测试 |
||
32 | break |
||
33 | |
||
34 | #if |
||
35 | #say |
||
36 | <衣服打孔/<notextile>@</notextile>打孔>\\ \\ |
||
37 | <宝石镶嵌/<notextile>@</notextile>镶嵌>\\ \\ |
||
38 | <镶嵌检测/<notextile>@</notextile>镶嵌检测>\\ \\ |
||
39 | <镶嵌宝石检测/<notextile>@</notextile>镶嵌宝石检测>\\ \\ |
||
40 | <镶嵌数量检测/<notextile>@</notextile>镶嵌数量检测>\\ \\ |
||
41 | |
||
42 | [<notextile>@</notextile>打孔] |
||
43 | #if |
||
44 | #act |
||
45 | [[drillHole]] <notextile>* * 0 * * 0 * 1 * *</notextile> |
||
46 | messageBox 装备位衣服_0号孔位_打孔成功 |
||
47 | |
||
48 | [<notextile>@</notextile>镶嵌] |
||
49 | #if |
||
50 | [[checkDrillHoleCount]] 0 = 0 |
||
51 | #act |
||
52 | messageBox 装备位衣服_打孔数量_等于0 \\ \\ 请先打孔 |
||
53 | break |
||
54 | |
||
55 | #if |
||
56 | #act |
||
57 | [[socketAbleItem]] <notextile>* * * * 0 0 * * 922 *</notextile> |
||
58 | messageBox 装备位衣服_孔位0_镶嵌完毕 |
||
59 | |
||
60 | [<notextile>@</notextile>镶嵌检测] |
||
61 | #if |
||
62 | *{color:green}checkSocketableItemCount* 0 = 1 |
||
63 | #act |
||
64 | messageBox 装备位衣服_镶嵌数量_等于1 |
||
65 | |
||
66 | #if |
||
67 | checkSocketableItemCount 0 > 1 |
||
68 | #act |
||
69 | messageBox 装备位衣服_镶嵌数量_大于1 |
||
70 | |
||
71 | #if |
||
72 | checkSocketableItemCount 0 < 1 |
||
73 | #act |
||
74 | messageBox 装备位衣服_镶嵌数量_小于1 |
||
75 | |
||
76 | [<notextile>@</notextile>镶嵌宝石检测] |
||
77 | #if |
||
78 | [[checkSocketableItem]] 0 0 n1 s1 |
||
79 | #act |
||
80 | [[dec]] n1 1 |
||
81 | messageBox 装备位衣服_0号孔位_镶嵌了宝石 \\ \\ 宝石名称:<$str(s1)> \\ \\ 宝石IDX字段:<$str(n1)> |
||
82 | #elseAct |
||
83 | messageBox 装备位衣服_0号孔位_未镶嵌宝石 |
||
84 | |
||
85 | [<notextile>@</notextile>镶嵌数量检测] |
||
86 | #if |
||
87 | [[checkStoneCount]] 镶嵌丹1 > 1 |
||
88 | #act |
||
89 | messageBox 身上装备镶嵌【镶嵌丹1】数量_大于1 |
||
90 | |
||
91 | #if |
||
92 | checkStoneCount 镶嵌丹1 = 1 |
||
93 | #act |
||
94 | messageBox 身上装备镶嵌【镶嵌丹1】数量_等于1 |
||
95 | |
||
96 | #if |
||
97 | checkStoneCount 镶嵌丹1 < 1 |
||
98 | #act |
||
99 | messageBox 身上装备镶嵌【镶嵌丹1】数量_小于1 |