Jump to content

مشكله بكود التايمر + الصوره


Recommended Posts

function() test 
    bg = guiCreateStaticImage(760, 1025, 400, 50, "images/blank.png", false) 
-- اللي فوق هذا ^ 
-- كود مو مهم حاولت اطبق طريقة سكربت عندي بهالحركه وعيت يعني مايضر لو مسحتوه ^ 
    DisableCH = guiCreateStaticImage(760, 1025, 400, 50, "images/CHD.png", false) 
    EnableCH = guiCreateStaticImage(760, 1025, 400, 50, "images/CHE.png", false) 
         
         
         
    guiSetVisible( DisableCH ,false) 
    guiSetVisible( EnableCH ,false) 
end 
  
 setTimer( 
function showHide() 
        if ( guiGetVisible ( bg ) == true ) then     
        showCursor(false) 
        guiSetVisible( bg ,false) 
        guiSetVisible( DisableCH ,false) 
        guiSetVisible( EnableCH ,false) 
        else 
        outputChatBox("CarHide Enabled", 255,136,0, true) 
    end 
end 
bindKey( "F1", "down", showHide) 
 ,1000,0) 

السلام عليكم

آخواني حاولت آسوي سكربت آنه لما تضغط اف1 تطلع لك صوره تحت بنص الشاشه

وتختفي بعد ثانيه , ولما تضغط اف1 مره ثانيه تطلع لك صوره ثانيه

حاولت ماعرفت ><

ممكن مساعدات ؟

Link to comment

لم يتم التجربة

bg = guiCreateStaticImage(760, 1025, 400, 50, "images/blank.png", false) 
DisableCH = guiCreateStaticImage(760, 1025, 400, 50, "images/CHD.png", false) 
EnableCH = guiCreateStaticImage(760, 1025, 400, 50, "images/CHE.png", false) 
guiSetVisible ( DisableCH, false ) 
guiSetVisible ( EnableCH, false ) 
  
show = "DisableCH" 
  
changeImage = function ( value ) 
    if not isTimer ( showTimer ) then  
        if tostring ( value ) == "DisableCH" then  
            gui = DisableCH 
            show = "EnableCH" 
        elseif tostring ( value ) == "EnableCH" then  
            gui = EnableCH 
            show = "DisableCH" 
        end 
        if isElement ( gui ) then 
            if not guiGetVisible ( gui ) then 
                guiSetVisible ( gui, true )  
                showTimer = setTimer ( guiSetVisible, 1000, 1, gui, false ) 
            end 
        end 
    end 
end 
  
  
bindKey ( "f1", "down",  
    function ( ) 
        changeImage ( show ) 
    end 
) 
  
--[[ 
function showHide ( ) 
    if guiGetVisible ( bg ) == true then    
        showCursor(false) 
        guiSetVisible( bg ,false) 
        guiSetVisible( DisableCH ,false) 
        guiSetVisible( EnableCH ,false) 
    else 
        outputChatBox("CarHide Enabled", 255,136,0, true) 
    end 
end 
]] 

Link to comment

مشكور آخ عناد ^^!

الكود شغال

100%

تمت الإفاده ..

معليش بس آبي آول مايضغط الحرف تطلع الصوره الثانيه

آنا آشوف لما تطلع صوره ما اقدر اضغط الحرف مره ثانيه الا لما الاولى تختفي

تقدر تخليها متى ماضغط الحرف تطلع الصوره الاولى او الثانيه

يعني تشيل التايمر من الحرف

Link to comment
مشكور آخ عناد ^^!

الكود شغال

100%

تمت الإفاده ..

معليش بس آبي آول مايضغط الحرف تطلع الصوره الثانيه

آنا آشوف لما تطلع صوره ما اقدر اضغط الحرف مره ثانيه الا لما الاولى تختفي

تقدر تخليها متى ماضغط الحرف تطلع الصوره الاولى او الثانيه

يعني تشيل التايمر من الحرف

يعني تبي اذا ضغطت الزر تختفي الاولى وتظهر الثانيه؟

ماتبي التايمر ؟

Link to comment

قصدي يعني

لما يضغط اف1 تطلع الصوره الاولى

واذا ضغط اف1 مره ثانيه قبل ماينتهي التايمر

يلغي الصوره الاولى ويطلع الثانيه

فهمتني ؟

Link to comment
bg = guiCreateStaticImage(760, 1025, 400, 50, "images/blank.png", false) 
DisableCH = guiCreateStaticImage(760, 1025, 400, 50, "images/CHD.png", false) 
EnableCH = guiCreateStaticImage(760, 1025, 400, 50, "images/CHE.png", false) 
guiSetVisible ( DisableCH, false ) 
guiSetVisible ( EnableCH, false ) 
  
show = "DisableCH" 
  
changeImage = function ( value ) 
    if isTimer(showTimer) then 
        if tostring ( value ) == "DisableCH" then 
            gui = DisableCH 
            show = "EnableCH" 
        elseif tostring ( value ) == "EnableCH" then 
            gui = EnableCH 
            show = "DisableCH" 
        end 
        if isElement ( gui ) then 
            if not guiGetVisible ( gui ) then 
                guiSetVisible ( gui, true )  
                showTimer = setTimer ( guiSetVisible, 1000, 1, gui, false ) 
            end 
        end 
    end 
end 
  
  
bindKey ( "f1", "down", 
    function ( ) 
        changeImage ( show ) 
    end 
) 
  

كذا يعني ؟

Link to comment

ما اعتقد يضبط ,

لكن جرب كذا ذذ,

bg = guiCreateStaticImage(760, 1025, 400, 50, "images/blank.png", false) 
DisableCH = guiCreateStaticImage(760, 1025, 400, 50, "images/CHD.png", false) 
EnableCH = guiCreateStaticImage(760, 1025, 400, 50, "images/CHE.png", false) 
guiSetVisible ( DisableCH, false ) 
guiSetVisible ( EnableCH, false ) 
  
bindKey ( "F1", "down", 
    function ( ) 
        guiSetVisible(EnableCH,true) 
        if not isTimer(Timer) then 
        setTimer(guiSetVisible,1000,1,EnableCH,false) 
  else 
        guiSetVisible(DisableCH,true) 
        if isTimer(Timer) then 
        Timer = setTimer(guiSetVisible,1000,1,DisableCH,false) 
            end 
        end 
    end 
) 
Link to comment

لم يتم التجربة

changeImage = function ( value ) 
    if isTimer ( showTimer ) then 
        killTimer ( showTimer ) 
        guiSetVisible ( gui, false )             
    end 
    if tostring ( value ) == "DisableCH" then  
        gui = DisableCH 
        show = "EnableCH" 
    elseif tostring ( value ) == "EnableCH" then  
        gui = EnableCH 
        show = "DisableCH" 
    end 
    if isElement ( gui ) then 
        if not guiGetVisible ( gui ) then 
            guiSetVisible ( gui, true )  
            showTimer = setTimer ( guiSetVisible, 1000, 1, gui, false ) 
        end 
    end 
end 

Link to comment
لم يتم التجربة
changeImage = function ( value ) 
    if isTimer ( showTimer ) then 
        killTimer ( showTimer ) 
        guiSetVisible ( gui, false )             
    end 
    if tostring ( value ) == "DisableCH" then  
        gui = DisableCH 
        show = "EnableCH" 
    elseif tostring ( value ) == "EnableCH" then  
        gui = EnableCH 
        show = "DisableCH" 
    end 
    if isElement ( gui ) then 
        if not guiGetVisible ( gui ) then 
            guiSetVisible ( gui, true )  
            showTimer = setTimer ( guiSetVisible, 1000, 1, gui, false ) 
        end 
    end 
end 

وش السالفه وراك مسحت البيند ؟

Link to comment

يعني يا طويل العمر خليه كذا ,

bg = guiCreateStaticImage(760, 1025, 400, 50, "images/blank.png", false) 
DisableCH = guiCreateStaticImage(760, 1025, 400, 50, "images/CHD.png", false) 
EnableCH = guiCreateStaticImage(760, 1025, 400, 50, "images/CHE.png", false) 
guiSetVisible ( DisableCH, false ) 
guiSetVisible ( EnableCH, false ) 
  
show = "DisableCH" 
  
changeImage = function ( value ) 
    if isTimer ( showTimer ) then 
        killTimer ( showTimer ) 
        guiSetVisible ( gui, false )            
    end 
    if tostring ( value ) == "DisableCH" then 
        gui = DisableCH 
        show = "EnableCH" 
    elseif tostring ( value ) == "EnableCH" then 
        gui = EnableCH 
        show = "DisableCH" 
    end 
    if isElement ( gui ) then 
        if not guiGetVisible ( gui ) then 
            guiSetVisible ( gui, true )  
            showTimer = setTimer ( guiSetVisible, 1000, 1, gui, false ) 
        end 
    end 
end 
  
bindKey ( "f1", "down", 
    function ( ) 
        changeImage ( show ) 
    end 
) 
Link to comment
يعني يا طويل العمر خليه كذا ,

bg = guiCreateStaticImage(760, 1025, 400, 50, "images/blank.png", false) 
DisableCH = guiCreateStaticImage(760, 1025, 400, 50, "images/CHD.png", false) 
EnableCH = guiCreateStaticImage(760, 1025, 400, 50, "images/CHE.png", false) 
guiSetVisible ( DisableCH, false ) 
guiSetVisible ( EnableCH, false ) 
  
show = "DisableCH" 
  
changeImage = function ( value ) 
    if isTimer ( showTimer ) then 
        killTimer ( showTimer ) 
        guiSetVisible ( gui, false )            
    end 
    if tostring ( value ) == "DisableCH" then 
        gui = DisableCH 
        show = "EnableCH" 
    elseif tostring ( value ) == "EnableCH" then 
        gui = EnableCH 
        show = "DisableCH" 
    end 
    if isElement ( gui ) then 
        if not guiGetVisible ( gui ) then 
            guiSetVisible ( gui, true )  
            showTimer = setTimer ( guiSetVisible, 1000, 1, gui, false ) 
        end 
    end 
end 
  
bindKey ( "f1", "down", 
    function ( ) 
        changeImage ( show ) 
    end 
) 

مشكور وماتقصر :)

Edit:

آيضا الشكر لآخ عناد = )

Edited by Guest
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...