View Single Post
  #2  
Old 05-13-2013, 09:45 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
The vizact.randint command returns a dynamic parameter that can be used when creating vizact actions.

If you just want to random integer, you can use the random module.:
Code:
import random
number = random.randint(1,5)
Reply With Quote