- 2,696
- 1,469
0A9A: 0@ = openfile "samp\chatlog" mode "rt"
Как правильно указать путь к чатлогу?
Код:
0A99: chdir 1
wait 0
if 0A9A: 1@ = openfile "SAMP\chatlog.txt" mode "rt"
then
0ac8: alloc 2@ 61
0AD7: read_string_from_file 1@ to 2@ size 60
0af8: сhat "%s" -1 2@
0ac9: free 2@
0A9B: closefile 1@
end
wait 0
0A99: chdir 0
Чтобы прочитать весь файл, добавь цикл с помощью 0AD6: end_of_file 1@ reached
Код:
while 8AD6: not end_of_file 1@ reached
if 0AD7: read_string_from_file 1@ to 2@ size 60
then 0af8: chat "%s" -1 2@
end
0c11: memset 2@ 0 61
end