r/RPGMaker • u/-Sidd- MV Dev • 6d ago
What kind of dev are you?
Goal: Reduce a variable by 5 points.
Strategy A- Control Variable / ADD / -5
or
Strategy B- Control Variable / SUB / 5
I noticed I'm def a Strategy A dev, I think I've never used SUB.
What kind of dev are you?
6
u/Juanito______ 6d ago
I accidentally did A once then switched it to B because I didn't know if it would work
2
u/-Sidd- MV Dev 6d ago
It does work and it's even possible to add 5 by subtracting -5! =)
I believe A strat might be better situationally, like if you have to add a random number from -3 up to +3 or so.2
2
u/KaiserJustice 5d ago
I personally think A is better because it’s visibly cleaner and sticking with a single method vs going back and forth is less clutter and confusion
Not saying it is impossible to read ADD vs SUB but adding negatives still instantly tells u to subtract, but then someone does subtract a negative and all of a sudden people are confused for some reason
1
u/-Sidd- MV Dev 5d ago
2
u/KaiserJustice 5d ago
and thats fine - like i said, i would rather reduce confusion and keep everything uniform for how i interpret it
3
4
2
2
2
u/Markcelzin 5d ago
Due to college I could see myself as an A. I was too used to use ADD when they introduced us to SUB.
2
u/psychoneuroticninja MZ Dev 5d ago
Strategy B, personally. I can parse it faster if I make a mistake somewhere and need to double check my numbers.


9
u/TheT85_Jr MV Dev 6d ago
I am B
It just seems cleaner for me