quest command() func. returns value?

05/13/2012 09:08 poXavincS#1
Hi guys, I am new a quest develop. But, I have a question. command() func. or like command() func. (but same work) Which returns a value?

value type like-> string, bool, int, float etc.

Thanks, guys..

Good works..
05/14/2012 06:22 atag#2
I think it returns a bool value (as it's lua).
You should test it...
Code:
s=command("n return value is:")
command("n type: "..type(s)..", value: "..tostring(s))