- 98
- 13
- Версия MoonLoader
- Другое
Я хочу, чтобы если какое-то слово из inicfg появлялось в чате, написанное другим игроком у меня производилось какое-либо действие. Вот мои наработки, а дальше хз.
Lua:
local inicfg = require 'inicfg'
local mainIni = inicfg.load({
settings =
{
title = "text",
text_color = "0xAABBCC"
}
function main()
local anotherIni = inicfg.load(nil, "see on chat cfg")
if not isSampfuncsLoaded() or not isSampLoaded() then return end
while not isSampAvailable() or not sampIsLocalPlayerSpawned(PLAYER_PED) do wait(0) end
while true do
wait(0)
printStyledString("SEE ON CHAT", 500, 2)
end
end
end