Jump to content

زر دون الضغط عليه !


Recommended Posts

showChat - موجود في المثال .

+

onClientGUIClick

هو يبيها بزر ماقال يوم تضغط الزر

موجود في مثال الويكي .

local isChatVisible = true -- let's assume the chat is visible 
function chat ( key, keyState ) 
    if isChatVisible then -- if it's on 
        showChat ( false ) -- turn it off 
        isChatVisible = false 
    else 
        showChat ( true ) -- if it's off 
        isChatVisible = true -- turn it on 
    end 
end 
bindKey ( "i", "down", chat ) -- the player's "i" key will toggle the chat 

Link to comment
  • Replies 168
  • Created
  • Last Reply

Top Posters In This Topic

بالضبط *_*

ابيه بزر GUI

مثل زر نسخ الاي بي

انا ابي هذا تضغط عليه يخفي الشات فهمت

local isChatVisible = true -- let's assume the chat is visible 
function chat ( key, keyState ) 
    if isChatVisible then -- if it's on 
        showChat ( false ) -- turn it off 
        isChatVisible = false 
    else 
        showChat ( true ) -- if it's off 
        isChatVisible = true -- turn it on 
    end 
end 
bindKey ( "i", "down", chat ) -- the player's "i" key will toggle the chat 

+

onClientGUIClick

Link to comment
showChat 
Event : "OnClientGUIClick" 

كيف يجي كود سيرفر ؟

addEvent("Hed",true) 
 function ShowChat()     
 local isChatVisible = true 
function chat ( key, keyState ) 
    if isChatVisible then  
        showChat ( false )  
        isChatVisible = false 
    else 
        showChat ( true ) 
        isChatVisible = true 
    end 
end 
     

؟

Link to comment
Button = guiCreateButton( 0.6, 0.95, 0.30, 0.25,'Show Chat', true ) 
  
addEventHandler( 'onClientGUIClick', Button, 
    function( ) 
        if not( i ) then 
            showChat( true ) 
        else 
            showChat( false ) 
        end 
        i = not i 
    end, false 
) 

Link to comment
Button = guiCreateButton( 0.6, 0.95, 0.30, 0.25,'Show Chat', true ) 
  
addEventHandler( 'onClientGUIClick', Button, 
    function( ) 
        if not( i ) then 
            showChat( true ) 
        else 
            showChat( false ) 
        end 
        i = not i 
    end, false 
) 

Thanks

Link to comment

..

يآ كنق مآ دآم انك ما تدري ان الليزر خط ثلاثي الابعاد مثل ما قالك عنآد ..

مثل مآ قال تآبل سآبقآ لشخص مثلك :lol: :

2- :D (الليزر (يمكن بعد 3-5 سنوات تعرف تسويه

Link to comment
-- مثال ( غير دقيق )ذ 
addCommandHandler ( "startLaser",  
    function ( ) 
        if getPedWeapon ( localPlayer ) ~= 0 then 
            outputChatBox ( "* Started Laser !!", 0, 255, 0, true ) 
            addEventHandler ( "onClientRender", root, createLaser ) 
        else 
            outputChatBox ( "* You Don't Have Weapon !!", 255, 0, 0, true ) 
        end 
    end 
) 
  
addCommandHandler ( "stopLaser",  
    function ( ) 
        outputChatBox ( "* Stopped Laser !!", 255, 0, 0, true ) 
        removeEventHandler ( "onClientRender", root, createLaser ) 
    end 
) 
  
function createLaser ( ) 
    x, y, z = getPedTargetStart ( localPlayer ) 
    x2, y2, z2 = getPedTargetEnd ( localPlayer ) 
    dxDrawLine3D ( x, y, z, x2, y2, z2, tocolor ( 255, 0, 0, 200 ) )     
end 

اهم شيء تفهم طريقته و تصلحه بـ نفسكـ , موب كل شيء جاهز = )

Link to comment
..

يآ كنق مآ دآم انك ما تدري ان الليزر خط ثلاثي الابعاد مثل ما قالك عنآد ..

مثل مآ قال تآبل سآبقآ لشخص مثلك :lol: :

2- :D (الليزر (يمكن بعد 3-5 سنوات تعرف تسويه

انا قلت ابي الكود ما قلت ابي اسويه !

Link to comment

انا قلت ابي الكود ما قلت ابي اسويه !

dxDrawLine3D 

يكون افضل لك

بس مارح يظهر لكل اللاعبين , راح يظهر لك وبس , فـ سوي ترايقر للسيرفر بعدين للكلنت عشان يشوفونه كل اللاعبين ..

Link to comment

انا قلت ابي الكود ما قلت ابي اسويه !

dxDrawLine3D 

يكون افضل لك

بس مارح يظهر لكل اللاعبين , راح يظهر لك وبس , فـ سوي ترايقر للسيرفر بعدين للكلنت عشان يشوفونه كل اللاعبين ..

Ok Thanks all

Link to comment

آلسلآم عليككم

خبصت ففي كودد مآ لقيته ذذ

كود البحث في GridList عن لاعب او مود ...الخ

المتطلبآت :

guiCreateEdit 

+

guiCreateStaticImage 

^

عشآن الصورهه ذذ

بس ما عرفت كيف اخليه اذا كتتب الاسم يطلع لهه

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