Jump to content

طلب طريقة إخفاء السريال


Recommended Posts

بسم الله الرحمن الرحيم آلسلام عليكم

ابي طريقة إخفاء السريال من لوحة الادمنيه مثال ما ابي احد يعرف السريال حقي او الايبي

في واحد علمني ونسيته .

--------------------------------------------

اخوكم سعد العتيبي

Link to comment

حطه في مود جديد وهو يتكفل بالامر

كلنت طبعا

local adminRes = getResourceFromName("admin"); 
if adminRes then 
    local adminRoot = getResourceRootElement(adminRes); 
    local serial = "حط سيريالك هنا"; 
    local ip = "حط الاي بي هنا"; 
  
    function update( ) 
        for k, v in ipairs(getElementsByType("gui-label", adminRoot)) do 
            local text = guiGetText(v); 
            if text:find(serial) or text:find(ip) then 
                guiSetText(v, text:gsub(".", "*")); 
            end 
        end 
        timer = setTimer(update, 1500, 1); 
    end 
  
    addEventHandler("onClientResourceStart", adminRoot, update); 
    addEventHandler("onClientResourceStop", adminRoot, function( ) 
        killTimer(timer); 
    end); 
else 
    outputChatBox("admin resource not found", 255, 0, 0); 
end 
Link to comment

حطه في مود جديد وهو يتكفل بالامر

كلنت طبعا

local adminRes = getResourceFromName("admin");
if adminRes then
    local adminRoot = getResourceRootElement(adminRes);
    local serial = "حط سيريالك هنا";
    local ip = "حط الاي بي هنا";
 
    function update( )
        for k, v in ipairs(getElementsByType("gui-label", adminRoot)) do
            local text = guiGetText(v);
            if text:find(serial) or text:find(ip) then
                guiSetText(v, text:gsub(".", "*"));
            end
        end
        timer = setTimer(update, 1500, 1);
    end
 
    addEventHandler("onClientResourceStart", adminRoot, update);
    addEventHandler("onClientResourceStop", adminRoot, function( )
        killTimer(timer);
    end);
else
    outputChatBox("admin resource not found", 255, 0, 0);
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...