z24d Posted September 14, 2015 Share Posted September 14, 2015 السلآم عليكم وين الغلط؟؟ ابيه اذا تكلم بشات انا مسويه وهو مصكوك ميوت مايقدر اشلون؟ function adminchat ( thePlayer, _, ... ) local message = table.concat ( { ... }, " " ) if ( isPlayerOnGroup ( thePlayer ) ) then for _, player in ipairs ( getElementsByType ( "player" ) ) do if ( isPlayerOnGroup ( player ) ) then outputChatBox ( "#FF0000(ADMIN)#FFFF00 ".. string.gsub(getPlayerName( thePlayer ), "#%x%x%x%x%x%x", "") .." : #FFFFFF".. string.gsub(message, "#%x%x%x%x%x%x", ""), player, 255, 255, 255, true ) if isPlayerMuted ( player ) then return end cancelEvent() outputChatBox ( "* You Are Muted.", 255, 0, 0, ) end end else outputChatBox ( "#FF0000 You Must be Admin.", source, 255, 255, 255, true ) end end addCommandHandler ( "AdminsChat", adminchat ) Link to comment
iMr.SFA7 Posted September 14, 2015 Share Posted September 14, 2015 function adminchat ( thePlayer, _, ... ) local message = table.concat ( { ... }, " " ) if ( isPlayerOnGroup ( thePlayer ) ) then for _, player in ipairs ( getElementsByType ( "player" ) ) do if ( isPlayerOnGroup ( player ) ) then if not isPlayerMuted ( thePlayer ) then outputChatBox ( "#FF0000(ADMIN)#FFFF00 ".. string.gsub(getPlayerName( thePlayer ), "#%x%x%x%x%x%x", "") .." : #FFFFFF".. string.gsub(message, "#%x%x%x%x%x%x", ""), player, 255, 255, 255, true ) else outputChatBox ( "* You Are Muted.",thePlayer, 255, 0, 0 ) end end end else outputChatBox ( "#FF0000 You Must be Admin.", source, 255, 255, 255, true ) end end addCommandHandler ( "AdminsChat", adminchat ) Link to comment
z24d Posted September 14, 2015 Author Share Posted September 14, 2015 sankth you man ! Link to comment
iMr.SFA7 Posted September 14, 2015 Share Posted September 14, 2015 sankth you man ! Thanks* You are welcome . Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now