Masa Posted July 25, 2014 Share Posted July 25, 2014 As the title says, I am interested in having a resource which displays multiple lines of welcome messages. Link to comment
DakiLLa Posted July 26, 2014 Share Posted July 26, 2014 Uhh, it's just some lines of code: local messages = { "message 1", "message 2", "message 3", } addEventHandler( "onPlayerJoin", root, function() for i, msg in ipairs( messages ) do outputChatBox( msg, source, 0, 255, 0 ) end 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