Обратите внимание, пользователь заблокирован на форуме. Не рекомендуется проводить сделки.
- Версия MoonLoader
- .026-beta
Вот просто не работает onShowDialog, остальные функции с samp.events работают
Хочу узнать id диалога, который мне нужен
Lua:
local sampev = require 'lib.samp.events'
function main()
if not isSampLoaded() or not isSampfuncsLoaded() then end
while not isSampAvailable() do wait(100) end
sampRegisterChatCommand("test", cmd_test)
while true do
wait(0)
end
end
function sampev.onShowDialog(dialogId, style, title, button1, button2, text)
sampAddChatMessage("hello")
sampAddChatMessage(dialogId, -1)
sampAddChatMessage(style, -1)
sampAddChatMessage(title, -1)
sampAddChatMessage(button1, -1)
sampAddChatMessage(button2, -1)
sampAddChatMessage(text, -1)
end
function sampev.onSendChat(msg)
sampAddChatMessage('You said: ' .. msg, -1)
end
function cmd_test(arg)
sampSendChat("hello")
end
Хочу узнать id диалога, который мне нужен