Jump to content

Please Fix Code | الرجأء اصلاح الكود


Recommended Posts

سسلآمم ععليكم ..

مدري وش المشكلة يوم آكتب

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 by Guest
Link to comment
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 
) 
  

hyiCsxq.png

Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...