Hello ,
Why i just got nill text , but i can save it on mysql .. i think the problem is on get this text
Client
local motd = getElementData(source, "account:motd") or ""
addEvent("motdAjah", true)
addEventHandler("motdAjah", root,
function ()
local screenWidth, screenHeight = guiGetScreenSize()
triggerEvent("noticeMP", root)
as = guiCreateStaticImage (screenWidth/4.5,screenHeight/1.2,600,70,"img/box.png", false)
InfoIcon = guiCreateStaticImage ( 15 , 15 , 40, 40 ,"img/icon/motdi.png", false , as)
Notice1 = guiCreateLabel( 70, 20, 600, 60, motd, false, as )
guiSetFont(Notice1, text12)
guiLabelSetColor(Notice1,221,137,39)
setTimer ( function()
destroyElement(as)
end, 10000, 1 )
end
)
Server
triggerClientEvent("motdAjah", source)