جرب ذا اتمنى االاكواد ماتجي ملخبطة لاني جوال
addEvent( "showchatdata",true )
addEventHandler( "showchatdata",root,
function()
for k,player in ipairs( "player" )do
local data = getElementData( player,'dataname' )
local acc =getPlayerAccount( player )
if not isGuestAccount( acc ) then
if data then
outputChatBox('the account name ['..getAccountName(acc)..'] and his data '..data..' .',root,255,255,255,true)
else
outputChatBox('Player is not logged in !',root,255,0,0,true)
end
end
end
end)