Wei Posted May 18, 2012 Posted May 18, 2012 addEventHandler ( "robbergui", root, robbergui ) function buttonClick ( uPlayer ) if ( source == button ) then triggerServerEvent( "onRobberAccept", uPlayer ) elseif ( source == close ) then guiSetVisible (windowrobber, false) showCursor (false) end end addEventHandler ( "onClientGUIClick", getRootElement(), buttonClick ) some string error
TAPL Posted May 18, 2012 Posted May 18, 2012 addEventHandler ( "robbergui", root, robbergui ) function buttonClick () if ( source == button ) then triggerServerEvent( "onRobberAccept", localPlayer) elseif ( source == close ) then guiSetVisible (windowrobber, false) showCursor (false) end end addEventHandler ( "onClientGUIClick", getRootElement(), buttonClick )
Stanley Sathler Posted May 18, 2012 Posted May 18, 2012 Blazy, pay attention to "onClientGUIClick" event. In your example, "uPlayer" stored the button that was clicked. The event there four parameters: string button, string state, int absoluteX, int absoluteY More here: https://wiki.multitheftauto.com/wiki/OnClientGUIClick One love bro.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now