OpenRecycleItem » 历史记录 » 版本 18
yangdefeng, 2022-05-27 18:44
1 | 2 | yangdefeng | h4. _*%{color:green}openRecycleItem%*_ |
---|---|---|---|
2 | 1 | machenhe | |
3 | 打开道具回收界面 |
||
4 | |||
5 | 标签:命令定义|openRecycleItem |
||
6 | |||
7 | *格式* |
||
8 | |命令名 | |
||
9 | |openRecycleItem | |
||
10 | |||
11 | 16 | yangdefeng | *相关变量* |
12 | |s$recycleItemList|本次回收背包格中的道具名称列表,以“,”分隔| |
||
13 | |n$recycleNum |本次回收对应背包格子数(从几个背包格中回收) | |
||
14 | 17 | yangdefeng | |\2=.本次回收第X个背包格中道具信息(X=[1-n$recycleNum]) | |
15 | 16 | yangdefeng | |s$recycleInfo_X_1|本次回收第X个背包格中道具名称 | |
16 | |s$recycleInfo_X_2|本次回收第X个背包格中道具数量 | |
||
17 | |s$recycleInfo_X_3|本次回收第X个背包格中道具回收货币变量名称 | |
||
18 | |s$recycleInfo_X_4|本次回收第X个背包格中道具回收总价 | |
||
19 | |||
20 | 11 | yangdefeng | - |
21 | - |
||
22 | |||
23 | 2 | yangdefeng | h4. *%{color:deepskyblue}特戒引擎脚本示例:%* |
24 | 1 | machenhe | |
25 | 10 | yangdefeng | *使用前提* |
26 | 配置回收项 |
||
27 | 配置工具 |
||
28 | tejiePlatform-->查看-->列表信息二-->回收列表 |
||
29 | |||
30 | 配置完生成以下文件 |
||
31 | ..\Mir200\Envir\recycleItem.txt |
||
32 | |||
33 | - |
||
34 | - |
||
35 | |||
36 | 1 | machenhe | bq. [<notextile>@</notextile>main] |
37 | #act |
||
38 | 4 | yangdefeng | *{color:green}openRecycleItem* |
39 | 2 | yangdefeng | |
40 | bq. %{color:deepPink}..\Mir200\Envir\Market_Def\QFunction-0.txt以下触发器 |
||
41 | 点击回收界面中“快速回收”时触发% |
||
42 | 5 | yangdefeng | %{color:darkOrange}[<notextile>@</notextile>manualRecycle]% |
43 | 3 | yangdefeng | #act |
44 | [[sendMsg]] 6 执行了一次手机回收操作。 |
||
45 | 13 | yangdefeng | print 本次回收道具列表:<$str(s$recycleItemList)> |
46 | print 回收道具列表长度:<$str(n$recycleNum)> |
||
47 | mov n$i 1 |
||
48 | 14 | yangdefeng | |
49 | 13 | yangdefeng | #if loop <$str(n$recycleNum)> |
50 | #act |
||
51 | mov s$回收物 <$str(s$recycleInfo_<$str(n$i)>_1)> |
||
52 | mov n$回收数 <$str(n$recycleInfo_<$str(n$i)>_2)> |
||
53 | mov s$回收货币 <$str(s$recycleInfo_<$str(n$i)>_3)> |
||
54 | mov n$回收总价 <$str(n$recycleInfo_<$str(n$i)>_4)> |
||
55 | print 回收物:<$str(s$回收物)>,回收数:<$str(n$回收数)>,回收货币:<$str(s$回收货币)>,回收总价:<$str(n$回收总价)> |
||
56 | inc n$i 1 |
||
57 | 3 | yangdefeng | |
58 | bq. %{color:deepPink}..\Mir200\Envir\Market_Def\QFunction-0.txt以下触发器 |
||
59 | 点击回收界面中“自动回收”勾选时触发% |
||
60 | 5 | yangdefeng | %{color:darkOrange}[<notextile>@</notextile>autoRecycle]% |
61 | 3 | yangdefeng | #act |
62 | [[sendMsg]] 6 点击了一次“自动回收”勾选。 |
||
63 | 6 | yangdefeng | |
64 | bq. %{color:deepPink}..\Mir200\Envir\Market_Def\QFunction-0.txt以下触发器 |
||
65 | 拾取道具时触发% |
||
66 | %{color:darkOrange}[<notextile>@</notextile>pickupItemEx]% |
||
67 | #if |
||
68 | 8 | yangdefeng | [[equal]] [[setAutoRecycle|<$autoRecycle>]] 1 |
69 | 6 | yangdefeng | #act |
70 | 7 | yangdefeng | [[doRecycleItem]] |
71 | 15 | yangdefeng | print 本次回收道具列表:<$str(s$recycleItemList)> |
72 | print 回收道具列表长度:<$str(n$recycleNum)> |
||
73 | mov n$i 1 |
||
74 | |
||
75 | #if loop <$str(n$recycleNum)> |
||
76 | #act |
||
77 | mov s$回收物 <$str(s$recycleInfo_<$str(n$i)>_1)> |
||
78 | mov n$回收数 <$str(n$recycleInfo_<$str(n$i)>_2)> |
||
79 | mov s$回收货币 <$str(s$recycleInfo_<$str(n$i)>_3)> |
||
80 | mov n$回收总价 <$str(n$recycleInfo_<$str(n$i)>_4)> |
||
81 | print 回收物:<$str(s$回收物)>,回收数:<$str(n$回收数)>,回收货币:<$str(s$回收货币)>,回收总价:<$str(n$回收总价)> |
||
82 | inc n$i 1 |