PgGetItemsNumber » 历史记录 » 版本 1
machenhe, 2022-05-10 17:51
1 | 1 | machenhe | _*%{color:green}pgGetItemsNumber%*_ |
---|---|---|---|
2 | |||
3 | 获取背包中指定物品数量,或满足条件所需的数量 |
||
4 | |||
5 | 标签:命令定义|pgGetItemsNumber |
||
6 | |||
7 | *格式* |
||
8 | |命令名 |参数1 |参数2 |参数3 | |
||
9 | |pgGetItemsNumber |物品名称 |变量 |所需数量 | |
||
10 | |||
11 | 说明: |
||
12 | * 参数1 |
||
13 | 物品名称 |
||
14 | |||
15 | * 参数2 |
||
16 | 变量,用于获取物品数量 |
||
17 | |||
18 | * 参数3 |
||
19 | 所需数量,如果为空或者为0,则参数2返回背包物品的数量,大于0则判断距离条件数量还差多少个,如果数量满足则变量返回0 |
||
20 | |||
21 | |||
22 | *%{color:deepskyblue}脚本示例:%* |
||
23 | |||
24 | bq. [<notextile>@</notextile>获取背包物品数量] |
||
25 | #act |
||
26 | mov s1 粗铁 |
||
27 | pgGetItemsNumber S1 N1 |
||
28 | sendmsg 6 背包中的<$str(S1)>有<$str(N1)>个 |
||
29 | |||
30 | bq. #act |
||
31 | pgGetItemsNumber S1 N1 100 |
||
32 | #if |
||
33 | equal N1 0 |
||
34 | #act |
||
35 | sendmsg 6 背包中的<$str(S1)>数量足够 |
||
36 | #elseact |
||
37 | sendmsg 6 背包中的<$str(S1)>数量不足100个,还差<$str(N1)>个 |