I was skeptical of the 2 star rating so played it. idk.... Torn between 2 and 3, so I'll give it +1 for at least building some intrigue.
Shallow characters. Hilarious dweeb looking MC. Not a very interesting story. One of the most frustrating parts (and I've seen this in other VN/Ren'Py games, so it's not a unique flaw) the data structures need some work: it feels like the whole thing is array based, and executes in
Shallow characters. Hilarious dweeb looking MC. Not a very interesting story. One of the most frustrating parts (and I've seen this in other VN/Ren'Py games, so it's not a unique flaw) the data structures need some work: it feels like the whole thing is array based, and executes in
O(n) time per chapter, so by the end it's chugging along "I think I can I think I can". Instead... idk... it's almost like it has to search the entire list each time to find the correct position; instead it seems much more efficient to store a local reference to the current position and rather than searching for the next value, increment and read from index so it's constant time O(1) rather than linear O(n) .