GetGuildList » 历史记录 » 版本 1
yangdefeng, 2022-05-09 11:46
1 | 1 | yangdefeng | _*%{color:green}getGuildList%*_ |
---|---|---|---|
2 | 获取当前服务器的全部行会列表,返回以\",\"分隔的字符串 |
||
3 | |||
4 | 标签:命令定义|getGuildList |
||
5 | |||
6 | *格式* |
||
7 | |命令名 |参数1 | |
||
8 | |getGuildList |返回变量| |
||
9 | |||
10 | *说明* |
||
11 | 参数1: 返回变量 |
||
12 | 返回以\",\"分隔的行会名称字符串 |
||
13 | |||
14 | - |
||
15 | - |
||
16 | |||
17 | *%{color:deepskyblue}特戒引擎脚本示例:%* |
||
18 | |||
19 | bq. [<notextile>@</notextile>main] |
||
20 | #say |
||
21 | <创建行会/<notextile>@</notextile>创建>\\ \\ |
||
22 | <解散行会/<notextile>@</notextile>解散>\\ \\ |
||
23 | <打开行会界面/<notextile>@</notextile>行会界面>\\ \\ |
||
24 | <全服行会列表/<notextile>@</notextile>行会列表>\\ \\ |
||
25 | |
||
26 | [<notextile>@</notextile>创建] |
||
27 | #if |
||
28 | not [[haveGuild]] |
||
29 | #act |
||
30 | %{color:lightGrey};创建行会,以玩家角色名为行会名称% |
||
31 | [[addGuild]] <$userName> self |
||
32 | [[sendTipsMsg]] 行会创建成功/fcolor=222 |
||
33 | #elseAct |
||
34 | sendTipsMsg 你有组织,不能创建/fcolor=222 |
||
35 | |
||
36 | [<notextile>@</notextile>解散] |
||
37 | #if |
||
38 | [[isGuildMaster]] |
||
39 | #act |
||
40 | [[disband]] |
||
41 | sendTipsMsg 你解散了行会/fcolor=222 |
||
42 | #elseAct |
||
43 | sendTipsMsg 你不是会长/fcolor=222 |
||
44 | |
||
45 | [<notextile>@</notextile>行会界面] |
||
46 | #if |
||
47 | #act |
||
48 | [[openSysUi]] 3 |
||
49 | |
||
50 | [<notextile>@</notextile>行会列表] |
||
51 | #act |
||
52 | *%{color:green}getGuildList%* s$行会列表 |
||
53 | print <$str(s$行会列表)> |
||
54 | sendTipsMsg 请在控制台查看/fcolor=222 |