Vespan loneliness Автор темы Проверенный 2,140 1,790 17 Май 2022 #1 Версия MoonLoader .026-beta блет забыл где эта функция где вызываешь эту функцию и там можно много текста отправить сразу-же,через одинаковую задержку
блет забыл где эта функция где вызываешь эту функцию и там можно много текста отправить сразу-же,через одинаковую задержку
Решение chapo 17 Май 2022 Lua: function sendLines(text, delay) lua_thread.create(function() for line in text:gmatch('[^\n]+') do sampSendChat(line) wait(delay or 1000) end end) end
Lua: function sendLines(text, delay) lua_thread.create(function() for line in text:gmatch('[^\n]+') do sampSendChat(line) wait(delay or 1000) end end) end
chapo tg/inst: @moujeek Всефорумный модератор 9,086 12,097 17 Май 2022 Решение #2 Lua: function sendLines(text, delay) lua_thread.create(function() for line in text:gmatch('[^\n]+') do sampSendChat(line) wait(delay or 1000) end end) end Позитивный голос 0 Негативный голос Решение
Lua: function sendLines(text, delay) lua_thread.create(function() for line in text:gmatch('[^\n]+') do sampSendChat(line) wait(delay or 1000) end end) end