- 10
- 1
- Версия MoonLoader
- .026-beta
Почему не работает скрипт?
local q = require "lib.samp.events"
function main()
if not isSampLoaded() and isSampAvailable() then return end
sampAddChatMessage('Timer 5 sec successfully loaded!',-1)
while true do
wait(0)
end
end
function q.onShowDialog(dialogId, dialogStyle, dialogTitle, okButtonText, cancelButtonText, dialogText)
lua_thread.create(function()
if dialogTitle:find('Технический паспорт транспорта') then
wait(5500)
sampAddChatMessage('После открытия диалога прошло 5 секунд. Можно покупать!', 0xFF0000)
end
end)
end