otclient/data/modules/messagebox/messagebox.lua
2011-05-19 14:11:05 -03:00

12 lines
292 B
Lua

function autoDestroyParent()
self.parent:destroy()
end
function messageBox(title, text)
local msgBox = UI.load("messagebox.yml")
msgBox.locked = true
msgBox.title = title
msgBox:child("textLabel").text = text
msgBox:child("okButton").onClick = autoDestroyParentz
end