行为
clearGuildList
删除指定文件
标签:命令定义|clearGuildList
格式命令名 | 参数1 |
clearGuildList | 文件路径 |
- 参数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 文件不存在
由 yangdefeng 更新于 超过 2 年 之前 · 2 修订