فاّرس Posted April 19, 2013 Share Posted April 19, 2013 Hello, i have problem in me code : addEventHandler("onClientPlayerJoin",root, isChatVisible = true setTimer(function() if isChatVisible then showChat ( false ) isChatVisible = false end end,1000,1)) not work ! Link to comment
PaiN^ Posted April 19, 2013 Share Posted April 19, 2013 Where is the function for the event handler ?!! Link to comment
PaiN^ Posted April 19, 2013 Share Posted April 19, 2013 The first thing after the root is a var, Tha's worng ! And i don't think you can put the function inside a timer in that way, Should look like this ( Ex ) : addEventHandler ( 'onPlayerJoin', root, function ( ) setTimer ( function ( ) ... Link to comment
فاّرس Posted April 19, 2013 Author Share Posted April 19, 2013 The first thing after the root is a var, Tha's worng !And i don't think you can put the function inside a timer in that way, Should look like this ( Ex ) : addEventHandler ( 'onPlayerJoin', root, function ( ) setTimer ( function ( ) ... didn't work, addEventHandler ( 'onPlayerJoin', root, isChatVisible = true function ( ) setTimer ( function ( ) if isChatVisible then showChat ( source,false ) isChatVisible = false end end,1000,1)) or addEventHandler ( 'onPlayerJoin', root, isChatVisible = true function ( ) setTimer ( function ( ) if isChatVisible then showChat ( source,false ) isChatVisible = false end end end,1000,1)) Link to comment
PaiN^ Posted April 19, 2013 Share Posted April 19, 2013 I said ( Ex ) ._." What are you trying to do ? Link to comment
iPrestege Posted April 19, 2013 Share Posted April 19, 2013 isChatVisible = true addEventHandler("onClientResourceStart",resourceRoot, function( ) setTimer( function( ) if ( isChatVisible ) then showChat ( false ) isChatVisible = not isChatVisible end end,1000,1) end ) 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