行为
CheckGuildList » 历史记录 » 修订 1
修订 1/2
| 下一页 »
machenhe, 2022-04-28 15:56
checkGuildList
检测角色所在行会名称是否在指定文件中
标签:命令定义|checkGuildList
格式命令名 | 参数1 |
checkGuildList | 文件路径 |
- 参数1: 检测文件路径
路径需要基于..\\Mir200\\Envir
举例
设定检测路径为
\\testlist.txt
完整检测路径
..\\Mir200\\Envir\\testlist.txt
特戒引擎脚本示例:
[@main]
#act
mov s$file \\数据文件\\测试非预制数据文件.txt
#say
<添加行会名称/@添加>\\ \\
<清理行会名文件/@清理>\\ \\
<检测所在行会是否在文件中/@检测行会名>\\ \\
<检测文件存在/@存在>\\ \\
[@添加]
#if
haveGuild
#act
addGuildList <$str(s$file)>
readTxt <$str(s$file)> s0
;print命令在控制台输出文件内容
print 文件内容-> s0
#elseAct
print 尚未加入行会
[@清理]
#if
#act
clearGuildList <$str(s$file)>
readTxt <$str(s$file)> s0
print 文件内容-> s0
[@检测行会名]
;玩家没加入行会,执行checkGuildList会报错
#if
not haveGuild
#act
print 尚未加入行会
#if
checkGuildList <$str(s$file)>
#act
print 所在行会存在于文件中
#elseAct
print 所在行会不存在于文件中
#if
#act
readTxt <$str(s$file)> s0
print 文件内容-> s0
[@存在]
#if
fileExist <$str(s$file)>
#act
print 文件存在
#elseAct
print 文件不存在