finding all the combinations
Currently with some of my slot games, I am checking for win combinations, by doing Every combination possible.
But wondering if there is an easier way.
Let's say I have 3 reels.
each real is 3 images
so
Reel 1 = 1,2,3
Reel 2 = 4,5,6
Reel 3 = 7,8,9
So I am checking for 1,4,7 / 2,4,7 / 3,4,7 / 1,5,7 / 1,5,7 etc etc etc
since I can have win combination if I have 2 of the same symbols on reel 1, 1 on reel 2 and 3 on reel 3.
so I end up with a lot of combo's.. is there an easier way for checking ??
Thanks in advance