DarkLink Posted January 25, 2012 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! Borderpatrol Project Gamemode - Under Development (80%)
Kenix Posted January 25, 2012 Posted January 25, 2012 You need convert boolean to string. See in arguments in function outputChatBox http://vk.com/the_kenix Вопросы задавайте на форуме, не пишите мне в личку. Please don't pm me.
Castillo Posted January 25, 2012 Posted January 25, 2012 local ca = false outputChatBox("hei") outputChatBox("bee ".. tostring(ca)) Try that. San Andreas Utopia RPG (SAUR) Owner & Developer. Education is the most powerful weapon which you can use to change the world.
DarkLink Posted January 25, 2012 Author 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 Borderpatrol Project Gamemode - Under Development (80%)
Kenix Posted January 25, 2012 Posted January 25, 2012 Good luck. http://vk.com/the_kenix Вопросы задавайте на форуме, не пишите мне в личку. Please don't pm me.
DarkLink Posted January 25, 2012 Author Posted January 25, 2012 Thanks mate! Borderpatrol Project Gamemode - Under Development (80%)
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