FuriouZ Posted June 27, 2013 Share Posted June 27, 2013 Hello again I need do that if player logs in then script shows panel to him from client-side. Client: function onPlayerLoginShowArenas ( ) GUIEditor.staticimage[1] = guiCreateStaticImage(0.00, 0.00, 1.00, 1.00, "img/backround.png", true) showCursor(true) end addEvent( "onPlayerLogin", true ) addEventHandler( "onPlayerLogin", getRootElement(), onPlayerLoginShowArenas ) Server: addEventHandler("onPlayerLogin", root, function() triggerClientEvent ( "onPlayerLogin", getRootElement(), onPlayerLoginShowArenas) end ) Debugscript says "ERROR: Server triggered clientside event onPlayerLogin, but event is not added clientside"... Link to comment
iPrestege Posted June 27, 2013 Share Posted June 27, 2013 Hello again I need do that if player logs in then script shows panel to him from client-side. Client: function onPlayerLoginShowArenas ( ) GUIEditor.staticimage[1] = guiCreateStaticImage(0.00, 0.00, 1.00, 1.00, "img/backround.png", true) showCursor(true) end addEvent( "onPlayerLogin", true ) addEventHandler( "onPlayerLogin", getRootElement(), onPlayerLoginShowArenas ) Server: addEventHandler("onPlayerLogin", root, function() triggerClientEvent ( "onPlayerLogin", getRootElement(), onPlayerLoginShowArenas) end ) Debugscript says "ERROR: Server triggered clientside event onPlayerLogin, but event is not added clientside"... root element return for all players : addEventHandler("onPlayerLogin", root, function() triggerClientEvent ( source, "onPlayerLogin_",source) end ) function onPlayerLoginShowArenas ( ) GUIEditor.staticimage[1] = guiCreateStaticImage(0.00, 0.00, 1.00, 1.00, "img/backround.png", true) showCursor(true) end addEvent( "onPlayerLogin_", true ) addEventHandler( "onPlayerLogin_", getRootElement(), onPlayerLoginShowArenas ) Link to comment
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