行为
getGuildScale
获得指定行会当前总人数
标签:命令定义|getGuildScale
格式命令名 | 参数1 | 参数2 |
getGuildScale | 行会名字符串 | 返回变量 |
说明
参数1: 待查询行会名字符串
参数2: 返回变量存储当前行会人数
特戒引擎脚本示例:
[@main]
#say
<创建行会/@@inputString0>\\ \\
<加入行会/@@inputString1>\\ \\
<查询行会人数/@行会人数查询>\\ \\
[@inputString0]
#if
checkGuildName s0
#act
sendMsg 6 该行会名称已被占用
break
#if
not haveGuild
#act
addGuild <$str(s0)> self
sendMsg 6 创建行会【<$guildName>】
#elseAct
sendMsg 6 角色已在行会【<$guildName>】中
[@inputString1]
#if
not checkGuildName s1
#act
sendMsg 6 没有这个行会
break
#if
not haveGuild
#act
addGuildMember <$str(s1)> <$userName>
sendMsg 6 加入行会【<$guildName>】
#elseAct
sendMsg 6 角色已有行会,请先退出
[@行会人数查询]
#if
haveGuild
#act
getGuildScale <$guildName> n$行会人数
sendMsg 6 【<$guildName>】行会人数:<$str(n$行会人数)>
#elseAct
sendMsg 6 请先加入或创建一个行会
由 yangdefeng 更新于 超过 2 年 之前 · 1 修订