Skip to main content

On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(6 edits) (+2)(-7)

The tutorial is super unclear. I never figured out for sure what to do with negatives or results over ten because of the unclear language used. I could never figure out exactly what I was doing wrong because I've never been able to isolate just a negative/over ten result. I assume the "tenths" column would be zero? 

EDIT: After going in and out of the tutorial servers until getting something testable, I can confirm that it wants the unsigned result. I assume the way it's wrapped in MOD is supposed to hint at that, but I don't know what operator that could be referring to, as the only thing I can think of is modulo, which returns the remainder of a division.
EDIT of EDIT: I forgot that || is absolute value notation. MOD, here, is still totally lost on me, though.

EDIT2: So, after trying again and again, I can only conclude that this must be broken. Neither zero nor nine seem to work for over-ten results, and I can't figure out what else "tenths" might refer to.

EDIT3: The tenths column is the final digit of the result. DAMN.

An easy way to clarify this would be to add the expected result to the examples.

1 + 1 = 2 = 2

1 - 2 = -1 = 1

8 + 8 = 16 = 6

(+6)(-1)

The game literally tells you how to do this. If you get a number higher than 10 then you would just put the number in the ones place as your answer, so 11 would be 1 and 12 would be 2, so on and so forth. you will never have a negative either because regardless of what the math says you always take the bigger number minus the smaller one.

(-5)

Bruh, lmao. The exact words in the tutorial are "simply remove the tenths column." In hindsight I understand this, but the meaning of the words specifically is unclear, especially in the use of the word "column." This led me to think it was referring to one of the columns on the screen, as that's designed in rows and columns similar to a spreadsheet. The spreadsheet comparison is made stronger by the use of MOD(), which, unless it has some secondary meaning, is nonsensical.

As for the second point, you got the correct answer, but the way you're doing it isn't mathematically correct. It's the result of an unnecessary simplification without an understanding of the operations. It also flies directly in the face of the tutorial text, which specifically provides a negative result as an example. This is also another point that's unclear, as it doesn't explain that it expects the absolute value, I didn't remember that 1-8=-7 but |1-8|=7, and many people won't know that an equation surrounded by pipes means absolute value. On top of that, the include of MOD() around the equation threw me off even more because I was trying to figure out how a broken modulo operation fits in.

So, no, the game does not literally tell you how to do this. There are gaps in the explanation of what's wanted.

(-4)

It's supposed to be hard. If it'd be fully explained, wouldn't be any fun

(2 edits) (+5)(-2)

Hard and obtuse are totally different things. Incomplete/unclear instructions impose false difficulty at best, and there's no fun in that.

It was also confusing for me, but as I saw mod|..| I immediately understood that it means |..| mod 10