GetBagInfo » 历史记录 » 版本 2
tejie, 2024-07-03 09:46
1 | 1 | tejie | h4. _*{color:green}getBagInfo*_ |
---|---|---|---|
2 | |||
3 | 获取角色背包信息 |
||
4 | |||
5 | 2 | tejie | 标签:命令定义|getBagInfo>getBagInfo |
6 | |||
7 | 1 | tejie | *格式:* |
8 | |命令名 |参数1|参数2 |参数3 | |
||
9 | |getBagInfo|信息类型 |变量返回值|stdmode筛选值| |
||
10 | |||
11 | |||
12 | |||
13 | *说明:* |
||
14 | |\3^.参数1:信息类型; |
||
15 | 参数2:指定类型对应变量返回值| |
||
16 | |参数1:ItemCount |参数2即保存变量为数值,返回物品数量(每个背包格都算一个数量); | |
||
17 | |参数1:ItemMakeIndex |参数2即保存变量必须为元素类型,返回背包物品的MakeIndex元素列表; | |
||
18 | |参数1:ItemIdx |参数2即保存变量必须为元素类型,返回背包物品的数据库idx元素列表; | |
||
19 | |参数1:ItemName |参数2即保存变量必须为元素类型,返回背包物品的名称元素列表; | |
||
20 | |^.参数3:|stdmode值类型筛选 |
||
21 | 缺省为获取背包所有物品 |
||
22 | 填写5只获取stdmode值为5的武器 |
||
23 | <notextile>可以 5|6|10|11 只取背包武器衣服</notextile>| |
||
24 | |||
25 | - |
||
26 | - |
||
27 | |||
28 | h4. *{color:deepskyblue}特戒引擎脚本示例:* |
||
29 | |||
30 | bq. [@示例] |
||
31 | %{color:lightGrey};取背包所有物品的单元格数量% |
||
32 | *{color:green}getBagInfo* ItemCount N$背包物品 |
||
33 | [[print]] 背包物品单元格数量:<notextile><$STR(N$背包物品)></notextile> |
||
34 | <notextile></notextile> |
||
35 | %{color:lightGrey};取背包所有物品的MakeIndex保存到元素变量中% |
||
36 | *{color:green}getBagInfo* ItemMakeIndex L$背包物品 |
||
37 | [[print]] 背包物品MakeIndex:<notextile><$STR(L$背包物品)></notextile> |
||
38 | <notextile></notextile> |
||
39 | %{color:lightGrey};取背包所有物品的数据库Idx保存到元素变量中% |
||
40 | *{color:green}getBagInfo* ItemIdx L$背包物品 |
||
41 | [[print]] 背包物品数据库Idx:<notextile><$STR(L$背包物品)></notextile> |
||
42 | <notextile></notextile> |
||
43 | %{color:lightGrey};取背包中武器衣服名称保存到元素变量中% |
||
44 | *{color:green}getBagInfo* ItemName L$背包物品 5|6|10|11 |
||
45 | [[print]] 背包物品名称:<notextile><$STR(L$背包物品)></notextile> |