DarkLink Posted January 25, 2012 Share Posted January 25, 2012 Is there any problem using outputchatBox to print bool vars ? I guess I cant.. I have this, and I only see the "hei" on chatbox not the "bee false" local ca = false outputChatBox("hei") outputChatBox("bee " .. ca) Why the hell? oO Thanks in advance! Link to comment
Kenix Posted January 25, 2012 Share Posted January 25, 2012 You need convert boolean to string. See in arguments in function outputChatBox Link to comment
Castillo Posted January 25, 2012 Share Posted January 25, 2012 local ca = false outputChatBox("hei") outputChatBox("bee ".. tostring(ca)) Try that. Link to comment
DarkLink Posted January 25, 2012 Author Share Posted January 25, 2012 Ahn right, ofc! I am very rusty, since the 2011 :c Need to work a bit to recover the time lost 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