Aerisetta
Active member
Hi, looking for some help, thanks 
I currently have a text entity that plays a random follow animation (follow1, follow2, follow3, etc)
I am looking to create a more flexible random script so I can update and add new follow animations quicker without redoing the formula each time.
For example, I want it to be like
And then when I try to update and add 2 more follow animations, i can simply add like this
I currently have a text entity that plays a random follow animation (follow1, follow2, follow3, etc)
I am looking to create a more flexible random script so I can update and add new follow animations quicker without redoing the formula each time.
For example, I want it to be like
spawn
if frame 1
generate random number between 1 to 14
if 1, anim follow1
if 2, anim follow2
if 3, anim follow3
...
if 14, anim follow14
And then when I try to update and add 2 more follow animations, i can simply add like this
spawn
if frame 1
generate random number between 1 to 16
if 1, anim follow1
if 2, anim follow2
if 3, anim follow3
...
if 14, anim follow14
if 15, anim follow15
if 16, anim follow16