Jump to content

طلب تصحيح كود


Recommended Posts

addEventHandler('onPlayerChat', g_Root, 
    function(msg, type) 
        if type == 0 then 
            cancelEvent() 
            if chatTime[source] and chatTime[source] + tonumber(get("*chat/mainChatDelay")) > getTickCount() then 
                outputChatBox("Stop spamming main chat!", source, 255, 0, 0) 
                return 
            else 
                chatTime[source] = getTickCount() 
            end 
            if get("*chat/blockRepeatMessages") == "true" and lastChatMessage[source] and lastChatMessage[source] == msg then 
                outputChatBox("Stop repeating yourself!", source, 255, 0, 0) 
          end 
    end 
) 

وضيفة الكود اذا احد كتب مثلا هلا وكتبها مرا ثانيه ماتطلع في الشات

الكود اخذته من الفري روم بس مااضبط

Link to comment

جرب ذا و انصح تركبه مع التاج

LastMsg = {} 
  
addEventHandler("onPlayerChat",root, 
    function (msg,type) 
        if ( type == 0 ) then 
            if ( LastMsg[source] ~= msg ) then 
                LastMsg[source] = msg 
            else 
                outputChatBox("* Stop Spamming Main Chat",source,255,0,0) 
            end 
        end 
    end 
) 

Link to comment
جرب ذا و انصح تركبه مع التاج
LastMsg = {} 
  
addEventHandler("onPlayerChat",root, 
    function (msg,type) 
        if ( type == 0 ) then 
            if ( LastMsg[source] ~= msg ) then 
                LastMsg[source] = msg 
            else 
                outputChatBox("* Stop Spamming Main Chat",source,255,0,0) 
            end 
        end 
    end 
) 

ابيه مايكتب نفس الكلمه الي كتبها عشان مايتكرر النشر

Link to comment
LastMsg = {} 
  
addEventHandler("onPlayerChat",root, 
    function (msg,type) 
        if ( type == 0 ) then 
            if ( LastMsg[source] ~= msg ) then 
                LastMsg[source] = msg 
            else 
                outputChatBox("* Stop Spamming Main Chat",source,255,0,0) 
                cancelEvent() 
            end 
        end 
    end 
) 

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