Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Related question- are words counted more than once if you, for example, return to a previously written portion- like looking at a diary entry again, except there's been an addition. Presumably, the addition counts, but does the diary entry text count again because it shows up twice in a play through, or once because the words are only present once in your game's code?

Correct, the addition would count, but if the portion of text that has already been seen is implemented by a variable or some other way of "reusing" the same text values, that part would not count again. If the words are present only once in the code, they are counted only once.