Hi all, as per title, I need help making multiple variables. When you visit the girls in my game at night time, I want to assign a number 1 to 5 for the 5 girls, and the game will work off that number the next day for certain scenarios. After a couple of visits each, there could be anything from 3 to 14 points (or whatever ever the fuck it is). I don't want 14 variables to mess about with, I want them in blocks of say 3. If I call the variable visit_points how can I not have to use multiple if satatments.
ie I don't want to do this
if visit_points == 1
if visit_points == 2
if visit_points == 3
Can I do something like this (I've tried it, it don't work)
if visit_points == (1, 2, 3)
I know I can use
if visit_points <= 3
But it will just run me into more problems when I get more points/variables.
ie I don't want to do this
if visit_points == 1
if visit_points == 2
if visit_points == 3
Can I do something like this (I've tried it, it don't work)
if visit_points == (1, 2, 3)
I know I can use
if visit_points <= 3
But it will just run me into more problems when I get more points/variables.
Last edited: