' A F . Posted June 9, 2015 Share Posted June 9, 2015 (edited) سسلآمم ععليكم .. مدري وش المشكلة يوم آكتب Send ProGamer [ لا اله الا الله ] يجيني Player Not Found .. وانا موجود ومتأكد من الاسم .. function sendMessage(cmd,name,msg) local Name = getPlayerFromName(name) if ( Name ) then if ( msg ~= '' ) then outputChatBox(""..msg.."",Name,255,255,255,true) else outputChatBox("* Player Not Found ",source,math.random(0,255),math.random(255,255),math.random(0,255)) end end end addCommandHandler("Send",sendMessage) Edited June 9, 2015 by Guest Link to comment
' A F . Posted June 9, 2015 Author Share Posted June 9, 2015 آف آف مششكور .. لاكن شلتها و م يرسل و الدي بوق فأضي Link to comment
Simple. Posted June 9, 2015 Share Posted June 9, 2015 addCommandHandler("Send", function (plr,cmd,name,msg) local Name = getPlayerFromName(tostring (name)) if ( Name ) then if ( msg ~= '' ) then outputChatBox(tostring (msg),Name,255,255,255,true) else outputChatBox("* Player Not Found ",plr,math.random(0,255),math.random(255,255),math.random(0,255)) end end end ) 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