Jump to content

استفسار بسيطط


The King

Recommended Posts

الموضوع عباره عن اكواد تسويها مفيده , يعني اكواد موب موجوده وانت تسويها , مثل حق طلال الي يحسب لك كم لاعب بالماركر ,

هذا الكود طارحه بالموضوع ومافيه مثله بالويكي ,

بالنسبه لـ,

https://wiki.multitheftauto.com/wiki/Useful_Functions

هي نفسها وظائف تفيدك وتختصر لك ولازم تنسخ الكود كامل ,

مثلا وظيفه عناد ,

https://wiki.multitheftauto.com/wiki/guiSetLocation

يوم تسوي الكود تخليه كذا

x3NAD = {  
    xLocation = { 
        ["right"] = { 1 }; 
        ["left"] = { 10 }; 
        ["center"] = { 2 }; 
    }; 
    yLocation = { 
        ["up"] = { 10 }; 
        ["down"] = { 1 }; 
        ["center"] = { 2 };      
    }; 
}; 
  
guiSetLocation = function ( gui, Horizontal, Vertical ) 
    local screenW, screenH = guiGetScreenSize ( ) 
    local windowW, windowH = guiGetSize ( gui, false ) 
    if Horizontal and Vertical then 
        local x, y = tonumber ( x3NAD.xLocation[Horizontal][1] ) or 2, tonumber ( x3NAD.yLocation[Vertical][1] ) or 2 
        local x, y = ( screenW -windowW ) /x, ( screenH -windowH ) /y 
        guiSetPosition ( gui, x, y, false ) 
    end 
end; 
  
window = guiCreateWindow ( 100, 100, 400, 400, "Test", false ); 
guiSetLocation ( window, "left", "down" ); 
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...