Jump to content

طلب كود قفل شات


Recommended Posts

سلام عليكم ورحمة الله وبركاتة

كل عام وانتم بخير

ابي كود قفل شات يعني

كلمة تكتبها في اف 8 يقفل شات ولما تيجي تكتب بالشات يطلع له تم قفل شات

ونفس كلمة تكتبها مره اخر تفتح شات

فهتم علي

Link to comment
addEventHandler("onCleintGUIClick",root,function() 
if (source == button) then 
setElementData(root,"chatlock",true) 
end 
end) 
  
addEventHandler("onClientPlayerChat",root,function() 
if getElementData(root,"localChat") == "true" then 
cancelEvent() 
outputChatBox("الشات مقفل ",localPlayer,255,0,0) 
end 
end) 
  

Link to comment
addEventHandler("onCleintGUIClick",root,function() 
if (source == button) then 
setElementData(root,"chatlock",true) 
end 
end) 
  
addEventHandler("onClientPlayerChat",root,function() 
if getElementData(root,"localChat") == "true" then 
cancelEvent() 
outputChatBox("الشات مقفل ",localPlayer,255,0,0) 
end 
end) 
  

ايوه ابيها كذا تحت تجربة شكرا لك

بس انا ابي كلمة تكتبها باف 8 يلا بسوية بلوحة

Link to comment
addEventHandler("onCleintGUIClick",root,function() 
if (source == button) then 
setElementData(root,"chatlock",true) 
end 
end) 
  
addEventHandler("onClientPlayerChat",root,function() 
if getElementData(root,"localChat") == "true" then 
cancelEvent() 
outputChatBox("الشات مقفل ",localPlayer,255,0,0) 
end 
end) 
  

'onClientPlayerChat' مافي حدث اسمه

مافيها أرقمنت لاعب بالكلنت outputChatBox والوظيفـة

خطأ 'onCleintGUIClick' وأنت كاتب الايفينت

وتحقق من اسم الداتا

Link to comment

طيب انا عدلت يلي فوق تشتغل كذا

addEventHandler("onClientGUIClick",root,function() 
if (source == button) then 
setElementData(root,"chatlock",true) 
end 
end) 
  
  
addEventHandler("onPlayerChat",root,function() 
if getElementData(root,"localChat") == "true" then 
cancelEvent() 
outputChatBox("Chat is Locked!!", source, 255, 0, 0, true) 
end 
end) 

Link to comment

addEventHandler("onClientGUIClick", root, 
function() 
if source == GUIEditor.button[1] then 
triggerServerEvent("Chat", localPlayer, "Open") 
elseif source == GUIEditor.button[2] then 
triggerServerEvent("Chat", localPlayer, "Close") 
end 
end) 

addEvent("Chat", true) 
addEventHandler("Chat", root, 
function(Event) 
if Event == "Open" then 
for index, value in ipairs(getElementsByType("player")) do 
setElementData(value, "ChatStat", "Lock") 
end 
elseif Event == "Close" then 
for index, value in ipairs(getElementsByType("player")) do 
setElementData(value, "ChatStat", "Open") 
end 
end 
end) 
  
addEventHandler("onPlayerChat", root, 
function() 
if getElementData(source, "ChatStat") == "Lock" then 
cancelEvent() 
outputChatBox("Chat is Locked!!", source, 255, 0, 0, true) 
else 
end 
end 
) 

اعمل 2 زر فتح وقفل -

Link to comment

بس سوال لو انا لو سويتها كذا تشتغل

كلنت 
addEventHandler("onClientGUIClick",root,function() 
if (source == button) then 
triggerServerEvent("Chat", localPlayer, "Open") 
end 
end) 
  
سيرفر  
  
addEvent("Chat", true) 
addEventHandler("Chat", root, 
function(Event) 
if Event == "Open" then 
setElementData(root,"chatlock",true) 
end 
end)) 
  
  
addEventHandler("onPlayerChat",root,function() 
if getElementData(root,"localChat") == "true" then 
cancelEvent() 
outputChatBox("Chat is Locked!!", source, 255, 0, 0, true) 
end 
end) 
  

تشتغل

Link to comment

  
 --Created By Me[Z]oO 
addCommandHandler("ChatState", 
function(p,c,s) 
    local players = getElementsByType ( "player" )  
    setElementData(getResourceRootElement(getThisResource()),"ChatSystem",tostring(s)) 
    if s == "False" then 
        outputChatBox("تم اغلاق الشات من قبل الكونسل "..getPlayerName(p).."",root,0,255,0) 
    else 
        outputChatBox("تم فتح الشات من قبل الكونسل "..getPlayerName(p).."",root,0,255,0) 
    end 
end) 
  
  
addEventHandler("onPlayerChat",root, 
function() 
    if getElementData(getResourceRootElement(getThisResource()),"ChatSystem") == "False" then 
        outputChatBox("لقد قام الكونسول بقفل الشات الان يرجي الانتظار حتي يقوم بفتحه",source,255,0,0) 
        cancelEvent() 
    else return 
    end 
end) 
  

اكتب باف 8 ChatState False رح ينقفل كذا

ChatState True

رح يفتح الشات اتمني اكون افدتك

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...