New Tool: (3.1) Random Plug (Feb 2019)

v0.52

  • Fix to make random selection better when opening the GUI multiple times quickly



math.randomseed fix

Click For Related Thread

  --random number
  --get os.time() as a seed
  local t = os.time()
  --as os.time() updates slowly we multiply it by random number before passing to randomseed
  math.randomseed((t * math.random(1,500)))
  --get random number based on os.time()
  local ran_num = math.random(1, num_available_insts)