local present = 'lmike'
local pass = getPassword()
local present1 = 'arizonastart2023'
local pass1 = getPassword()
function onDialogShow(dialogId, dialogStyle, dialogTitle, okButtonText, cancelButtonText, dialogText)
if dialogId == 2 then
sendDialog(dialogId, 1, 0, pass)
end
end
function onSpawn()
sendInput('/present '..present)
end
function onDialogShow(dialogId, dialogStyle, dialogTitle, okButtonText, cancelButtonText, dialogText)
if dialogId == 2 then
sendDialog(dialogId, 1, 0, pass1)
end
end
function onSpawn()
sendInput('/present '..present1)
end