- 327
- 112
- Версия SA-MP
-
- 0.3.7 (R1)
- 0.3.7-R2
- 0.3.7-R3
- 0.3.7-R4
- 0.3DL
- 0.3e (R1) / CR-MP
- CR-MP 0.3.7
- Любая
- Другая
нужен добавить в скрипт задержку между выводом цифр 1 минута
код:
local file = getWorkingDirectory()..'\\combinations.txt'
function main()
while not isSampAvailable() do wait(0) end
sampRegisterChatCommand('getLines', function()
if doesFileExist(file) then
for line in io.lines(file) do
sampAddChatMessage(line, -1)
end
else
sampAddChatMessage('Файл '..file..' не найден!', -1)
end
end)
wait(-1)
end
Последнее редактирование: