行为
AddAccountList » 历史记录 » 修订 1
修订 1/2
| 下一页 »
machenhe, 2022-04-28 15:32
addAccountList
增加人物帐号到指定文件
标签:命令定义|addAccountList
格式命令名 | 参数1 |
addAccountList | 文件路径 |
- 参数1: 写入文件路径
路径需要基于..\\Mir200\\Envir
举例
设定写入路径为
\\testlist.txt
完整写入路径
..\\Mir200\\Envir\\testlist.txt
特戒引擎脚本示例:
[@main]
#act
mov s$file \\数据文件\\测试非预制数据文件.txt
#say
<增加账号/@添加>\\ \\
<删除文件中账号/@删除>\\ \\
<检测账号是否在文件中/@检测账号>\\ \\
<检测文件存在/@存在>\\ \\
[@添加]
#act
addAccountList <$str(s$file)>
readTxt <$str(s$file)> s0
;print命令在控制台输出文件内容
print 文件内容-> s0
[@删除]
#if
#act
delAccountList <$str(s$file)>
readTxt <$str(s$file)> s0
print 文件内容-> s0
[@检测账号]
#if
checkAccountList <$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 文件不存在