3NAD Posted August 15, 2012 Share Posted August 15, 2012 طريقة انكـ تخفي السيارة و تطلعها هذي صعبة لـ مبرمج مبتدأ و مآششوف ان ضروري تخليه يخفيها و يطلعها بكيفه .. إذا ضاعت عليه خلاص يشتري غيرها المعرض موجود Link to comment
EdeN Posted August 15, 2012 Author Share Posted August 15, 2012 طيب خلاص ابي كود اول مايدخل واحد السيرفر تطلعه صور او 3 صور وتروح متتاليه Link to comment
|Mr|-Talal07-| Posted August 15, 2012 Share Posted August 15, 2012 function createcar(source,cmd,id) local x,y,z = getElementPosition(source) local veh = createVehicle(id,x,y,z) warpPedIntoVehicle(source,veh) end addCommandHandler("car",createcar) هذا مود بسيط اذا تبي سيارة car رقم السياره Link to comment
EdeN Posted August 15, 2012 Author Share Posted August 15, 2012 function createcar(source,cmd,id) local x,y,z = getElementPosition(source) local veh = createVehicle(id,x,y,z) warpPedIntoVehicle(source,veh) end addCommandHandler("car",createcar) هذا مود بسيط اذا تبي سيارة car رقم السياره طيب منين اطلع السياره ؟؟ Link to comment
3NAD Posted August 15, 2012 Share Posted August 15, 2012 طيب خلاص ابي كود اول مايدخل واحد السيرفر تطلعه صور او 3 صور وتروح متتاليه guiCreateStaticImage guiSetAlpha Link to comment
|Mr|-Talal07-| Posted August 15, 2012 Share Posted August 15, 2012 اكتب في اف8 car رقم السيارة اذا تبي ارقام السيارات https://wiki.multitheftauto.com/wiki/Vehicle_IDs Link to comment
EdeN Posted August 15, 2012 Author Share Posted August 15, 2012 طيب خلاص ابي كود اول مايدخل واحد السيرفر تطلعه صور او 3 صور وتروح متتاليه guiCreateStaticImage guiSetAlpha شوف وش طلع ؟ Link to comment
EdeN Posted August 15, 2012 Author Share Posted August 15, 2012 اكتب في اف8 car رقم السيارة اذا تبي ارقام السيارات https://wiki.multitheftauto.com/wiki/Vehicle_IDs مشكور على المساعده Link to comment
EdeN Posted August 15, 2012 Author Share Posted August 15, 2012 طيب خلاص ابي كود اول مايدخل واحد السيرفر تطلعه صور او 3 صور وتروح متتاليه guiCreateStaticImage guiSetAlpha شوف وش طلع ؟ Link to comment
EdeN Posted August 16, 2012 Author Share Posted August 16, 2012 function showClientImage() guiCreateStaticImage( 20, 200, 100, 100, "4.png", false ) guiCreateStaticImage( 20, 200, 100, 100, "2.png", false ) guiCreateStaticImage( 20, 200, 100, 100, "3.png", false ) end addEventHandler( "onClientResourceStart", getResourceRootElement( getThisResource() ), showClientImage ) --Create a gridlist myWindow = guiCreateWindow ( 0.30, 0.10, 0.5, 0.60, "GUI window title", true ) --Add a command handler to change the alpha of the GUI window. --Usage example: '/alpha 0.8', where 0.8 is stored as alphaAmount function changeAlpha ( commandName, alphaAmount ) alphaAmount = tonumber(alphaAmount) guiSetAlpha ( myWindow, alphaAmount ) end addCommandHandler ( "alpha", changeAlpha ) Link to comment
3NAD Posted August 16, 2012 Share Posted August 16, 2012 انا سسويت لك مثال على صورة وحدة وانت كمل الباقي img1 = guiCreateStaticImage( 20, 200, 100, 100, "4.png", false ) setTimer( function() guiSetAlpha ( img1, 1 ) end ,1000,1) setTimer( function() guiSetAlpha ( img1, 0.7 ) end ,1100,1) setTimer( function() guiSetAlpha ( img1, 0.4 ) end ,1200,1) setTimer( function() guiSetAlpha ( img1, 0.1 ) guiSetVisible(img1,false) end ,1300,1) والإخفاء غير دقيق .. انت عدله Link to comment
EdeN Posted August 16, 2012 Author Share Posted August 16, 2012 انا سسويت لك مثال على صورة وحدة وانت كمل الباقي img1 = guiCreateStaticImage( 20, 200, 100, 100, "4.png", false ) setTimer( function() guiSetAlpha ( img1, 1 ) end ,1000,1) setTimer( function() guiSetAlpha ( img1, 0.7 ) end ,1100,1) setTimer( function() guiSetAlpha ( img1, 0.4 ) end ,1200,1) setTimer( function() guiSetAlpha ( img1, 0.1 ) guiSetVisible(img1,false) end ,1300,1) والإخفاء غير دقيق .. انت عدله مشكور عناد تعبتك ويي Link to comment
EdeN Posted August 16, 2012 Author Share Posted August 16, 2012 انا سسويت لك مثال على صورة وحدة وانت كمل الباقي img1 = guiCreateStaticImage( 20, 200, 100, 100, "4.png", false ) setTimer( function() guiSetAlpha ( img1, 1 ) end ,1000,1) setTimer( function() guiSetAlpha ( img1, 0.7 ) end ,1100,1) setTimer( function() guiSetAlpha ( img1, 0.4 ) end ,1200,1) setTimer( function() guiSetAlpha ( img1, 0.1 ) guiSetVisible(img1,false) end ,1300,1) والإخفاء غير دقيق .. انت عدله ابيه الصوره تكون كبيره كبر الشاشه انا اقصد Link to comment
Tete omar Posted August 16, 2012 Share Posted August 16, 2012 انا سسويت لك مثال على صورة وحدة وانت كمل الباقي img1 = guiCreateStaticImage( 20, 200, 100, 100, "4.png", false ) setTimer( function() guiSetAlpha ( img1, 1 ) end ,1000,1) setTimer( function() guiSetAlpha ( img1, 0.7 ) end ,1100,1) setTimer( function() guiSetAlpha ( img1, 0.4 ) end ,1200,1) setTimer( function() guiSetAlpha ( img1, 0.1 ) guiSetVisible(img1,false) end ,1300,1) والإخفاء غير دقيق .. انت عدله ابيه الصوره تكون كبيره كبر الشاشه انا اقصد يمديك تعدلها من احداثياتها وتخليها على كيفك Link to comment
3NAD Posted August 16, 2012 Share Posted August 16, 2012 img1 = guiCreateStaticImage( 0, 0, 1, 1, "4.png", true) Link to comment
EdeN Posted August 16, 2012 Author Share Posted August 16, 2012 ليه المودات تطلع ويه اذا ممكن ابي تطلع قبل المودات ممكن ؟؟ المهم مشكور عناد مشكور تيتي على المساعده Link to comment
Tete omar Posted August 16, 2012 Share Posted August 16, 2012 انت قصدك تطلع النافذه قبل ما تشتغل المودات ؟ Link to comment
EdeN Posted August 16, 2012 Author Share Posted August 16, 2012 انت قصدك تطلع النافذه قبل ما تشتغل المودات ؟ يـــــــــــــــب Link to comment
Tete omar Posted August 16, 2012 Share Posted August 16, 2012 انت قصدك تطلع النافذه قبل ما تشتغل المودات ؟ يـــــــــــــــب استخدم triggerClientEvent و onPlayerJoin أو OnResourcePreStart Link to comment
TAPL Posted August 16, 2012 Share Posted August 16, 2012 يا عزيزي إذا التحميل ما أكتمل ما راح تطلع النافذه مستحيل تطلع النافذة قبل ما يكتمل التحميل يعني ببساطة الي تبيه غير ممكن 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