Sorry,
I'm new in oscript:1) How can I convert an integer to a string?
2) Is it possible to read an integer from the configuration file ".properties"?
Thank you
Look at Str.StringToValue or Str.StringToInteger functions.
What version of CS are you coding for (so we can point you to the correct documentation).
Also try either Str.String(), or if you're feeling fancy, Str.Format("%1", yourInt). The last command, Str.Format() is a really handy one to know. It's a bit like String.format() in C#, or printf() in C++. It's super useful for when you want to echo out a debug statement in your code, i.e. "Value returned from function A is : <blah>, from function B : <blah2>"
-Hugh