Rubén Llorente's Early Roguelikes Patches

 ############################################################### 
Here you will find two patches that solve the infamous ISRUN bug
that affected some Unix versions of the game Rogue.

Unix Rogue V4 and Unix Rogue V5 implemented a mechanism to
simulate sneak attack bonuses. Any creature that was not "awake"
when attacked would give its attacker a +4 bonus to hit. In other
words, if either the hero of the creature were impeded or unaware
of each other, they were more vulnerable to surprise attacks.

Unfortunately, this mechanism was badly broken. In both versions
of the game, the flag which was taken as a reference to decide
whether a target was vulnerable was applied inconsistently. The
flag, called ISRUN, was turned off by default for the hero, so
monsters always got the bonus when attacking the hero. Worst yet,
the bonus never applied to the monsters, even if you caught them
off-guard.

In addition, the flag could be turned on and off for random
reasons, such as becoming hungry or eating an item.
 ############################################################### 
Patch for Rogue V4
Patch for Rogue V5
 ############################################################### 
Unix Rogue V3 is unaffected since it didn't implement the sneak
attack bonus mechanic.
 ############################################################### 

 ############################################################### 
For the sake of convenience, I host here the Early Roguelikes
Collection by ElwinR. It includes many Rogue versions, but keep
in mind that Ultrarogue is in a non-working state.

This collection was built from resources hosted by the Rogue
Restoration Project. ElwinR's take on the ISRUN bug is that the
developers intended the monsters to always have a +4 bonus to hit
the player. He patched his collection to prevent the ISRUN flag
from changing for arbitrary or bogus reasons, but he left the
player perpetually vulnerable to sneak attacks on purpose. The
games are therefore harder.
 ############################################################### 
ElwinR's Early Roguelikes Collection
 ############################################################### 
You may play the games unpatched if you feel like taking a
challenge. If you want to play as I believe the developers
intended, get the patches, download the Collection, unpack it,
patch it and build the game you intend to play.

$ unzip ElwinR-rl-74351bf23e5e.zip
$ cd ElwinR-rl-74351bf23e5e
$ patch -p1 < ElwinR-rl-74351bf23e5e-rogue_v4_isrun.patch
$ patch -p1 < ElwinR-rl-74351bf23e5e-rogue_v5_isrun.patch
$ cd ElwinR-rl-74351bf23e5e/rogue4
$ autoreconf
$ ./configure
$ make
 ############################################################### 

 ############################################################### 
Other resources:
 ############################################################### 
Roguelike Gallery, a place to play Rogue online
 ############################################################### 
Back to Software
 ############################################################### 
..
______________________________________________________________________
                   Gophered by Gophernicus/3.1.1 on OpenBSD/amd64 7.6