Jump to content

مساعده لا هتم


punisher-AE

Recommended Posts

صوره توضيح للطلب

WuMt5-pW57_714913001.png

كيف اضيف الاسم و البنق و الايبي و سريال ؟؟

أول شي تروح الى ازرار ال wndMain

تضيف فوق زر انتحار او kill

فوق هذا الزر

  
        {'btn', id='kill', onclick=killLocalPlayer}, 
  

تحط

        {'lbl', id='Your Name:'}, 
        {'lbl', id='name', text='', width=150}, 
        {'lbl', id='Your Ping:'}, 
        {'lbl', id='ping', text='', width=45}, 
        {'br'}, 
  
  

كذا خلصنا من الأزار

---------------------------------------

يبقى لنا عمل الوظيفه

تطلع فوق تحط هذي الوظيفه

  
  
function updatePing() 
    local ping = getPlayerPing(g_Me) 
    setControlText(wndMain, 'ping', ping ) 
    setControlText(wndMain, 'name', tostring(string.gsub(getPlayerName(g_Me),'#%x%x%x%x%x%x', ''))) 
end 
  
  
  

بعدين تدور على هذي الوظيفه تحطه بنفس الوظيفه

  
function mainWndShow() 
---تحطه هنا 
  

هذا اللي تحطه

  
    updateping = updateping or setTimer(updatePing, 2000, 0) 
  

يصير كذا

  
  
function mainWndShow() 
    if not getPedOccupiedVehicle(g_Me) then 
        hideControls(wndMain, 'repair', 'flip', 'upgrades', 'color', 'paintjob', 'lightson', 'lightsoff') 
    end 
    updateTimer = updateTimer or setTimer(updateGUI, 2000, 0) 
    updateping = updateping or setTimer(updatePing, 2000, 0)  ---اhere 
    updateGUI(true)  
end 
  

-----------------------

بعدها تدور على اسم الوظيفه ذي

  
function mainWndClose() 
---تحطه هنا 
  

هذا اللي تحطه

  
    killTimer(updateping) 
    updateping = nil 
  
  

يصير كذا

  
function mainWndClose() 
    killTimer(updateTimer) 
    updateTimer = nil 
    killTimer(updateping) ---here 
    updateping = nil ---here 
    colorPicker.closeSelect() 
end 
  

بالنسبه لاي بي والسيريال ما اعتقد انها مهمه في اف1

اي شي يصعب عليك رد هنا وانا اساعدك

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