Jump to content

مسآعده يآخوآن :]


Recommended Posts

آلسلام ععليكم :$

ولا عليكم امر ياعيال انا عندي مشكله في كود

سويت لوحه وزر الزر اذا ضغطته يخفي الشات واذا ضغطته مره ثانيه يطلع الشات

انا مشكلتي هنا في الضغطه الثانيه مايطلع الشات :(

وهذا كودي :D

addEventHandler ("onClientGUIClick",root, 
     function (  ) 
    if ( source == Button1 ) then 
            showChat ( false ) 
      else 
            showChat ( true ) 
    end 
  end 
) 

متأكد من الكود 100% لاكن مادري وين الخطأ :(

ملحوظه : فيه في اللوحه اكثر من زر واذا ضغط زر اخفاء الشات واختفى الشات وضغط مثلا زر ثاني وظيفته يطلع في الشات كلام بس يطلع الشات

^ مادري ليش :(

اتمنى ان آجد الحل ^_^

وابي فنشكن يخفي الخريطه والدم

وفنكشنً قطع آلرآس <3

Edited by Guest
Link to comment
    addEventHandler ("onClientGUIClick",root, 
         function (  ) 
        if ( source == Button1 ) then 
  if isChatVisible then  
                showChat ( false ) 
else 
                showChat ( true) 
  
        end 
      end 
    ) 
  

Link to comment
    addEventHandler ("onClientGUIClick",root, 
         function (  ) 
        if ( source == Button1 ) then 
  if isChatVisible then  
                showChat ( false ) 
else 
                showChat ( true) 
  
        end 
      end 
    ) 
  

ناقصك اند

حطيتها وجربت ومآشتغل :(

Link to comment
  addEventHandler ("onClientGUIClick",root, 
         function (  ) 
        if ( source == Button1 ) then 
  if isChatVisible then 
                showChat ( false ) 
else 
                showChat ( true) 
  
        end 
      end 
end 
    ) 
  

جربه

Edited by Guest
Link to comment
local isChatVisible = true 
addEventHandler ("onClientGUIClick",root,function () 
    if ( source == Button1 ) then 
    if isChatVisible then 
        showChat (false) 
        isChatVisible = false 
            else 
        showChat (true) 
        isChatVisible = true 
    end 
    end 
end) 

Link to comment

والله شفت الويكي سويت مثله , لاكن خليت التعريف داخل وماضبط

جربت حقك ضبط

مشكوووور يآلحن :$<3

الطلب الثاني الله لا يهينكم

فنكشن اخفاء الخريطه وحق الاسلحه

وقطع الرأس

Edited by Guest
Link to comment
والله شفت الويكي سويت مثله , لاكن خليت التعريف داخل وماضبط

جربت حقك ضبط

مشكوووور يآلحن :$<3

الطلب الثاني الله لا يهينكم

فنكشن اخفاء الخريطه وحق الاسلحه

وقطع الرأس

. حيآك الله

كيف اخفاء الخريطة وحق الاسلحه ؟

Link to comment

مشكور يا EH10

بس ابغيك تساعدني في الكود سويته

#Client

addEventHandler ("onClientGUIClick",root,  
function () 
    if (source == Button2) then 
        setPlayerHudComponentVisible ("money", false) 
else 
    setPlayerHudComponentVisible ("money", true) 
end 
end 
) 

ابغيه اذا ضغط الزر يخفيها واذا ضغطته مره ثانيه يطلعا حاولت ماقدرت

الكود الثاني

#Server

addEvent ( "Head", true ) 
addEventHandler ( "Head",root,  
function () 
    setPedHeadless( source, false ) 
else 
    setPedHeadless( source, true ) 
end ) 

تحققت من الزر في الكلينت وارسلت ترايقر لـ سيرفر لاني ابي اي واحد يقطع راسه يشوفه الكل

ماشتغل وابغيه اذا ضغط الزر يقطع راسه واذا ضغطه مره ثانيه يرجع راسه

وترى ماضبط قطع راس الاعب يقول الديبوق كذا

ERROR : Client (M7MD781) triggered serverside event Head, but event is not added serverside

اتمنى تساعدني <3

Link to comment
مشكور يا EH10

بس ابغيك تساعدني في الكود سويته

#Client

addEventHandler ("onClientGUIClick",root,  
function () 
    if (source == Button2) then 
        setPlayerHudComponentVisible ("money", false) 
else 
    setPlayerHudComponentVisible ("money", true) 
end 
end 
) 

ابغيه اذا ضغط الزر يخفيها واذا ضغطته مره ثانيه يطلعا حاولت ماقدرت

الكود الثاني

#Server

addEvent ( "Head", true ) 
addEventHandler ( "Head",root,  
function () 
    setPedHeadless( source, false ) 
else 
    setPedHeadless( source, true ) 
end ) 

تحققت من الزر في الكلينت وارسلت ترايقر لـ سيرفر لاني ابي اي واحد يقطع راسه يشوفه الكل

ماشتغل وابغيه اذا ضغط الزر يقطع راسه واذا ضغطه مره ثانيه يرجع راسه

وترى ماضبط قطع راس الاعب يقول الديبوق كذا

ERROR : Client (M7MD781) triggered serverside event Head, but event is not added serverside

اتمنى تساعدني <3

addEventHandler ("onClientGUIClick",root,  
function () 
    if (source == Button2) then 
if isPlayerHudComponentVisible("money") then 
        setPlayerHudComponentVisible ("money", false) 
else 
    setPlayerHudComponentVisible ("money", true) 
end 
end 
end 
) 

Link to comment

كلنت:

addEventHandler ("onClientGUIClick",root,function () 
    if (source == Button2) then 
        triggerServerEvent("Head",getLocalPlayer()) 
    end 
end) 

سيرفر:

addEvent("Head",true) 
addEventHandler("Head",root,function(thePlayer) 
        setPedHeadless(source, true) 
        outputChatBox("انت لا تملك رأس", thePlayer, 255, 0, 0) 
    else 
        setPedHeadless(source, false) 
        outputChatBox("انت تملك رأس الان", thePlayer, 255, 0, 0) 
end) 

Link to comment
كلنت:
addEventHandler ("onClientGUIClick",root,function () 
    if (source == Button2) then 
        triggerServerEvent("Head",getLocalPlayer()) 
    end 
end) 

سيرفر:

addEvent("Head",true) 
addEventHandler("Head",root,function(thePlayer) 
        setPedHeadless(source, true) 
        outputChatBox("انت لا تملك رأس", thePlayer, 255, 0, 0) 
    else 
        setPedHeadless(source, false) 
        outputChatBox("انت تملك رأس الان", thePlayer, 255, 0, 0) 
end) 

ماضبط يقول الديبوق

ERROR : Client (M7MD781) triggered serverside event Head, but event is not added serverside

Link to comment

Client

addEventHandler("onClientGUIClick", resourceRoot, function(  ) 
    if source == Button1 then 
        showChat(not isChatVisible( )) 
    elseif source == Button2 then 
        setPlayerHudComponentVisible("all", not isPlayerHudComponentVisible("all")) 
    elseif source == Button3 then 
        triggerServerEvent("onPlayerHeadless", localPlayer) 
    end 
end) 

Server

addEvent("onPlayerHeadless", true) 
addEventHandler("onPlayerHeadless", root, function( ) 
    setPedHeadless(source, not isPedHeadless(source)) 
end) 
Link to comment

قم بتعديل سيرفر

الى

    addEvent("Head",true) 
    addEventHandler("Head",root,function(thePlayer) 
    if isPedHeadless(source) then 
            setPedHeadless(source, false) 
            outputChatBox("انت لا تملك رأس", thePlayer, 255, 0, 0) 
        else 
            setPedHeadless(source, true) 
            outputChatBox("انت تملك رأس الان", thePlayer, 255, 0, 0) 
            end 
    end) 

Link to comment
قم بتعديل سيرفر

الى

    addEvent("Head",true) 
    addEventHandler("Head",root,function(thePlayer) 
    if isPedHeadless(source) then 
            setPedHeadless(source, false) 
            outputChatBox("انت لا تملك رأس", thePlayer, 255, 0, 0) 
        else 
            setPedHeadless(source, true) 
            outputChatBox("انت تملك رأس الان", thePlayer, 255, 0, 0) 
            end 
    end) 

-_-

Link to comment
قم بتعديل سيرفر

الى

    addEvent("Head",true) 
    addEventHandler("Head",root,function(thePlayer) 
    if isPedHeadless(source) then 
            setPedHeadless(source, false) 
            outputChatBox("انت لا تملك رأس", thePlayer, 255, 0, 0) 
        else 
            setPedHeadless(source, true) 
            outputChatBox("انت تملك رأس الان", thePlayer, 255, 0, 0) 
            end 
    end) 

-_-

وش مالك :idea::idea:

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