The King Posted October 30, 2013 Share Posted October 30, 2013 السلامم عليكم انا شفت ذا الموضوع viewtopic.php?f=161&t=50111 + صفحة الويكي https://wiki.multitheftauto.com/wiki/Useful_Functions ابي افهم وش ذا بالضبط اكواد ولا كيف ي ريت شرح بالتفصيللل Link to comment
فاّرس Posted October 30, 2013 Share Posted October 30, 2013 الموضوع عباره عن اكواد تسويها مفيده , يعني اكواد موب موجوده وانت تسويها , مثل حق طلال الي يحسب لك كم لاعب بالماركر , هذا الكود طارحه بالموضوع ومافيه مثله بالويكي , بالنسبه لـ, 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now