Jump to content

طلب كود مع مثال ^_^


Recommended Posts

هلا شباب شخباركم ؟؟

أبـغا أعرف كيف اخلي البوتون يسوي وظيفة ,ب امر مني

يعني لو يضغط الزائر على البوتون مثلا راح يخفي الشات او يظهره للتكتيك مثلاً 

وهو الامر showchat

واسم البوتون مثلا BTN

ي ريت مثال صغير وبسيط ي قلبي ^_^ 

Link to comment
4 minutes ago, Yossef1999 said:

هلا شباب شخباركم ؟؟

أبـغا أعرف كيف اخلي البوتون يسوي وظيفة ,ب امر مني

يعني لو يضغط الزائر على البوتون مثلا راح يخفي الشات او يظهره للتكتيك مثلاً 

وهو الامر showchat

واسم البوتون مثلا BTN

ي ريت مثال صغير وبسيط ي قلبي ^_^ 

مثال :

addEventHandler ( 'onClientGUIClick', root, function (    )
    if ( source == button ) then
        outputChatBox ( 'Congs you Pressed The Button', 0, 255, 0, true )
    end
end )

 

Link to comment
14 hours ago, #,+( _xiRoc[K]; > said:

مثال :


addEventHandler ( 'onClientGUIClick', root, function (    )
    if ( source == button ) then
        outputChatBox ( 'Congs you Pressed The Button', 0, 255, 0, true )
    end
end )

 

م فهمت قصدي انت :]

قصدي المود ينفذ اوامر COMMAND

:]

Link to comment

If 

addEventHandler("onClientGUIClick", root,
  function()
    if source == GUIEditor.button[1] then
      executeCommandHandler("report")
     end
    end
)

اعتقد صحيح
ولو تبي حق اخفاء شات

addEventHandler("onClientGUIClick", root,
  function()
    if source == GUIEditor.button[2] then
      if ( isChatVisible () == true ) then
        showChat(false)
        else
        showChat(true)
        end
      end
    end
)

اعتقد الاكواد صحيحه

Edited by A7MEDENO
Link to comment
13 hours ago, A7MEDENO said:

If 


addEventHandler("onClientGUIClick", root,
  function()
    if source == GUIEditor.button[1] then
      executeCommandHandler("report")
     end
    end
)

اعتقد صحيح
ولو تبي حق اخفاء شات

addEventHandler("onClientGUIClick", root,
  function()
    if source == GUIEditor.button[2] then
      if ( isChatVisible () == true ) then
        showChat(false)
        else
        showChat(true)
        end
      end
    end
)

اعتقد الاكواد صحيحه

اخوي الاول ماضبط ،

انا ابغاه البوتون يسوي reconnect [ مثل فقط ]

لاهنت ^_^

انا هو صاحب السؤال بس من حساب اخوي :^

Link to comment
-- #Client

addEventHandler("onClientGUIClick", root,function()
if source == GUIEditor.button[1] then
triggerServerEvent ( "Redirect",localPlayer )
end
end) 

-- #Srever

addEvent( "Redirect", true )
addEventHandler( "Redirect", root,function ()
redirectPlayer(source, 'ip', Server Port )
end)

ضيفه لقروب ادمن

Edited by #\_oskar_/#
Link to comment
1 minute ago, #\_oskar_/# said:

-- #Client

addEventHandler("onClientGUIClick", root,function()
if source == GUIEditor.button[1] then
triggerServerEvent ( "Redirect",localPlayer )
end
end) 

-- #Srever

addEvent( "Redirect", true )
addEventHandler( "Redirect", root,function ()
redirectPlayer(source, 'ip', Server Port )
end)

ضيفه لقروب ادمن

مشكور حبي ^_^

تقدر تشوف اخر بوست ؟ اعتقد تفهم له

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