» Contents » (0) Quickstart » (1) Introduction » (1.2) What is a rogue-like game?
» (2) Installation & setup» (3) Creating a character & starting to play » (4) The world » (5) Item and flag details, elements » (6) Monster details » (7) Character details » (8) Tactics & strategy » (9) Miscellanous |
(1.2) What is a rogue-like game? -------------------------------- Rogue was a game basing only on alpha-numerical characters, like letters and numbers. It didn't have any graphics. Thus it could run on basically every simple computer. However it was not a text-adventure. Its game engine provides a grid for turn-by-turn movement and combat that the user looks at from high above. Here is a small "screenshot": ............... ...########.... ...#$.....#.... ...#..@...'.... ...#......#.... ...########.p.. ............... The @ is usually the player, the dots are empty fields. The # are walls. Here the player seems to be inside a building. In the upper-left corner some money is deposited. The ' is an open door. Outside of the building there is a p, which is usually some townsfolk. They are not always friendly and some tend to steal! Rogue was the first game of this kind, hence all games working with similar graphics and game engine are called rogue-likes. Other well-known rogue-likes are Nethack, Larn, Moria, Angband.
|