AddTextListEx » 历史记录 » 版本 1
machenhe, 2022-04-25 15:33
1 | 1 | machenhe | _*%{color:green}addTextListEx%*_ |
---|---|---|---|
2 | 向指定文件中增加一行字符串 |
||
3 | |||
4 | |||
5 | 标签:命令定义|addTextListEx |
||
6 | |||
7 | *格式* |
||
8 | |命令名 |参数1 |参数2 |参数3 | |
||
9 | |addTextListEx |文件路径|要增加的字符串|指定插入序号 | |
||
10 | |||
11 | *说明* |
||
12 | * 参数1: 写入字符串的文件路径 |
||
13 | 路径需要基于..\Mir200\Envir |
||
14 | %{color:lightGrey}举例 |
||
15 | 设定读取路径为 |
||
16 | \testlist.txt |
||
17 | 完整读取路径 |
||
18 | ..\Mir200\Envir\testlist.txt% |
||
19 | |||
20 | * 参数2: 要写入的字符串 |
||
21 | |||
22 | * 参数3: 指定插入序号=行号-1 |
||
23 | 如要在第1行插入,指定插入序号为0 |
||
24 | 文件总行数<=指定序号时,则文件在最后新增一行写入 |
||
25 | 文件总行数>指定序号时,则文件(序号+1)行插入一行写入 |
||
26 | |||
27 | - |
||
28 | - |
||
29 | |||
30 | *%{color:deepskyblue}特戒引擎脚本示例:%* |
||
31 | |||
32 | bq. [<notextile>@</notextile>main] |
||
33 | #say |
||
34 | <text:添加一个玩家/@添加记录> |
||
35 | |
||
36 | [<notextile>@</notextile>添加记录] |
||
37 | #if |
||
38 | [[checkTextList]] \testList.txt <$userName> |
||
39 | #act |
||
40 | [[getStringPos]] \testList.txt <$userName> |
||
41 | sendMsg 6 已存在,在第<$str(n0)>行 |
||
42 | #elseAct |
||
43 | addTextListEx \testList.txt <$userName> 0 |
||
44 | [[getStringPos]] \testList.txt <$userName> |
||
45 | sendMsg 6 写入文件的第<$str(n0)>行 |