I don't wan't to put it in the chatbox. (Sorry I'm french)
Here is my full code:
MsgBoxWindow = {}
MsgBoxText = {}
MsgBoxWindow = guiCreateWindow(0.3984,0.3841,0.2061,0.1901,"Info",true)
guiSetAlpha(MsgBoxWindow,0.
MsgBoxText = guiCreateLabel(0.1991,0.2808,0.5498,0.4726,"",true,MsgBoxWindow)
guiSetVisible(MsgBoxWindow, false)
showCursor(false)
function newmsgbox(co)
guiSetVisible(MsgBoxWindow, true)
guiSetText(MsgBoxText, tostring(co))
showCursor(false)
setTimer(function() guiSetAlpha(MsgBoxWindow,0.70000000000000) end, 300, 1)
setTimer(function() guiSetAlpha(MsgBoxWindow,0.60000000000000) end, 700, 1)
setTimer(function() guiSetAlpha(MsgBoxWindow,0.50000000000000) end, 1000, 1)
setTimer(function() guiSetAlpha(MsgBoxWindow,0.40000000000000) end, 1300, 1)
setTimer(function() guiSetAlpha(MsgBoxWindow,0.30000000000000) end, 1500, 1)
setTimer(function() guiSetAlpha(MsgBoxWindow,0.20000000000000) end, 1800, 1)
setTimer(function() guiSetAlpha(MsgBoxWindow,0.10000000000000) end, 2000, 1)
setTimer(function() guiSetAlpha(MsgBoxWindow,0.00000000000000) end, 2300, 1)
setTimer(function() guiSetVisible(MsgBoxWindow, false) end, 2300, 1)
end
addEvent("msgBoxInfo", true)
addEventHandler("msgBoxInfo", getRootElement(), newmsgbox)
if ( isPlayerWasted () then
triggerEvent("msgBoxInfo", getRootElement(), "my text")
end
the type is client.