Jump to content

استفسار شباب


Recommended Posts

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

اليوم عندي سوال

ابي اعرف كيف اسوي مثل اللي في الصورة

p_166jq9z1.png

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

Link to comment

يا بلاك نكست مابي المود ولا ابي اي شي من الوزاره جبتلكم مثال

مستر جراند في مود الاملاك لخاصة حقه مسويها

لو سمحت ابي جاهز لاني معندي خبرة بالدي اكس

Link to comment

--Client

function isEventHandlerAdded( sEventName, pElementAttachedTo, func ) 
    if 
        type( sEventName ) == 'string' and 
        isElement( pElementAttachedTo ) and 
        type( func ) == 'function' 
    then 
        local aAttachedFunctions = getEventHandlers( sEventName, pElementAttachedTo ) 
        if type( aAttachedFunctions ) == 'table' and #aAttachedFunctions > 0 then 
            for i, v in ipairs( aAttachedFunctions ) do 
                if v == func then 
                    return true 
                end 
            end 
        end 
    end 
  
    return false 
end 
  
function dx() 
dxDrawText("Welcome VIP",x,y,x,y,tocolor ( 255, 255, 255, 255 ), 1, "default-bold" ) 
--x,y,x,y الاحداثيات بدلها 
end 
  
addEvent("DxVisibleTrue",true) 
addEventHandler("DxVisibleTrue",root, 
function() 
    if isEventHandlerAdded("onClientRender",root,dx) 
        removeEventHandler("onClientRender",root,dx) 
    else 
        addEventHandler("onClientRender",root,dx) 
    end 
end) 
  

--Server

addEventHandler("onPlayerLogin",root, 
function() 
local accName = getAccountName ( getPlayerAccount ( source) ) 
    if isObjectInACLGroup ("user."..accName , aclGetGroup ( "VIP" ) ) then -- اسم القروب VIP @@@@@@@@ 
        triggerClientEvent(source,"DxVisibleTrue",source) 
    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...