Jump to content

ممكن مساعد ابي مود جاهز او كود


EdeN

Recommended Posts

طريقة انكـ تخفي السيارة و تطلعها هذي صعبة لـ مبرمج مبتدأ :/

و مآششوف ان ضروري تخليه يخفيها و يطلعها بكيفه ..

إذا ضاعت عليه خلاص يشتري غيرها المعرض موجود :/

Link to comment
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
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

انا سسويت لك مثال على صورة وحدة وانت كمل الباقي

  
   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
انا سسويت لك مثال على صورة وحدة وانت كمل الباقي
  
   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
انا سسويت لك مثال على صورة وحدة وانت كمل الباقي
  
   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
انا سسويت لك مثال على صورة وحدة وانت كمل الباقي
  
   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

يا عزيزي إذا التحميل ما أكتمل ما راح تطلع النافذه

مستحيل تطلع النافذة قبل ما يكتمل التحميل

يعني ببساطة الي تبيه غير ممكن

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...