Thanks, it worked like a charm. I did not knowed, that I have to
call this before math.random().
On 03/21/2014 06:37 PM, Volodymyr
Bezobiuk wrote:
You should call once math.randomseed() at the beginning
before using math.random() with some kind of 'unpredictable'
(different every program run) number as argument.
math.randomseed(os.time()) does
the trick, usually...
|