Tips & Tricks

A few tips for our game:

(log in to comment)

Comments

It's a nice game, and the team seems to have come together well to produce all the bonus material. One thing puzzled me, though: sometimes, the player is walking along apparently nowhere near the other ninjas (or at least obscured by walls) and suddenly the danger symbols appear and he commits seppuku. Why does that happen? Did I miss an important part of the gameplay?
I believe that it's because the game has "true" line of sight, irrespective of the square walls. That means that he can be sighted from quite a bit further away than you might think at first blush.

The line of sight can be a bit tricky (the README warns you about this). This is an effect of the projection we used. Sometimes, walls which on the screen appear to protect you from a guard don't actually affect him at all. Let's try explaining with a bit of ASCII art:

A map:
 _________________
|   o    _____  o |
|_________________|

The screen:
#######################
#  o      #####     o #
###^#######^########^##
   |       |        |
  you    walls    enemy

The walls on the screen that appear to be between you and the guard are actually the upper walls of lower squares. (Of course, the effect is much more subtle with real graphics). While you get used to this after a while, we added the warning sign as an additional safety measure. Don't walk into those squares! ;)

What Phil said is also true: the guards can see from a long distance. However, we made it so that they can't see you from outside the screen, as that would be very unfair.

Trivia for bishop: Also, our resident expert in Japanese culture commented during the making of the game that when the ninja dies, it's not seppuku but simple hara-kiri. seppuku, I've been told, is a much longer and complicated ritual.

That'll teach me not to casually use Japanese words I picked up from "Shogun". ;-)