My computer broke about three months ago, so I haven't had the opportunity to return to the forums. But now I have a new one!
Let's cut to the question, though. I am using this randomization code:
- Code: Select all
randomize
i = int( RND * 100 ) + 1
if i < 50 then action.GoToFrame "1stARTq1fr1"
if i >= 50 then action.GoToFrame "1stARTq2fr1"
I am using this code many different times in my game (to different frames, of course), and I have been experiencing redundancy problems. If the first time I use the code results in "i < 50", all of the rest of the times will also result in "i < 50". Is this just crazy coincidence, or do I need to change the variable "i" to something else?