sdfy Известный Автор темы 346 228 25 Янв 2022 #1 Версия MoonLoader .027.0-preview Если в чате будет слово "привет", то скрипт его поймает выведет в чат "привет1"
Решение P3rsik 25 Янв 2022 Lua: local sampev = require('lib.samp.events') function sampev.onServerMessage(color, text) if text:find('привет') then sampSendChat('привет1') end end
Lua: local sampev = require('lib.samp.events') function sampev.onServerMessage(color, text) if text:find('привет') then sampSendChat('привет1') end end
P3rsik Активный 213 32 25 Янв 2022 Решение #2 Lua: local sampev = require('lib.samp.events') function sampev.onServerMessage(color, text) if text:find('привет') then sampSendChat('привет1') end end Реакции: lovandog и sdfy Позитивный голос 0 Негативный голос Решение
Lua: local sampev = require('lib.samp.events') function sampev.onServerMessage(color, text) if text:find('привет') then sampSendChat('привет1') end end