DisBand » 历史记录 » 版本 1
yangdefeng, 2022-05-09 13:47
| 1 | 1 | yangdefeng | _*%{color:green}disband%*_ |
|---|---|---|---|
| 2 | 解散角色当前所在行会 |
||
| 3 | %{color:deepPink}通过[默认行会系统][界面按钮]创建行会时, |
||
| 4 | 无须使用该命令.% |
||
| 5 | |||
| 6 | 标签:命令定义|disband |
||
| 7 | |||
| 8 | *格式* |
||
| 9 | |命令名 | |
||
| 10 | |disband | |
||
| 11 | |||
| 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 | *%{color:green}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 | [[getGuildList]] s$行会列表 |
||
| 53 | print <$str(s$行会列表)> |
||
| 54 | sendTipsMsg 请在控制台查看/fcolor=222 |