I have some idea but can not implement it.
Maybe somone can help me)
For example, i have some sequences of bets (5 for example), and i want that the bot bettin it sequences randomly
1st sequence:
0.00000001 Low
0.00000002 Low
0.00000004 High
0.00000008 High
2nd
0.00000001 Low
0.00000002 High
0.00000004 High
0.00000008 Low
3rd
0.00000001 High
0.00000002 Low
0.00000004 High
0.00000008 Low
etc...
help please)!
thank you!
I'm sure you could create a table/array in LUA, but I don't have the time to look it up right this second. The key would be to use the math.random() function.
something like
sequencenum = math.random(1,size of table variable)
Then use sequencenum to index into that table to the selected sequence.
If I have time later I'll look it up.