معاية مود الكتابة على شاشة الاعبين بس عايز يظهر اسم الى كتب الرسالة فى الشات
function shout(player, cmd, ...)
local accountname = getAccountName(getPlayerAccount(player))
if isObjectInACLGroup ( "user." .. accountname, aclGetGroup ( "official" )) then
for id, players in ipairs(getElementsByType("player")) do
local message = table.concat({...}," ")
local textDisplay = textCreateDisplay ()
local nombre = getPlayerName(player)
local textItem = textCreateTextItem( ""..message, 0.5, 0.5, 2, 255, 255, 255, 255, 2, "center", "center" )
textDisplayAddText ( textDisplay, textItem )
textDisplayAddObserver ( textDisplay, players )
setTimer ( textDestroyTextItem, 2000, 1, textItem )
setTimer ( textDestroyDisplay, 2000, 1, textDisplay )
end
else
outputChatBox("You cannot use this command!",player,255,12,15)
end
end
addCommandHandler("hi", shout)
--Credits to SolidSnake14 for help.