INTRODUCTION

This Funeral Quest modification adds two new items (brass knuckles and body armor),
two new graphics (two jpegs), and modifies Di-Mart.  It also requires a version of
FQ higher than 0.94 (the current one) to fix a bug in player maintenance.  Be sure 
you read the installation instructions carefully, but it is easy to hose your system 
with this mod.

Body Armor increases the player's max HP.  However, it wears out with use.

Brass Knuckles increase the player's Strength, but it too depreciates with use.

Both items can by bought at Di-Mart.

INSTALLATION

This archive should be unpacked in the folder that Funeral Quest 
installed to.  Typically, that folder is C:\Program Files\FQServer. 
Once unpacked, script\store_supplies.c and script\maint_player.c 
will be OVERWRITTEN.  Previous mods will be LOST.  
New graphics will appear in public\pages.

YOU MUST NOW MODIFY script\init.c BY HAND.

In main, add the following:

  // Body Armor item requires two inventory slots
  global int C_CUSTOM_BODY_ARMOR          = 10;
  global int C_CUSTOM_BODY_ARMOR_STRENGTH = 11; 

  // Brass Knuckles
  global int C_CUSTOM_BRASS_KNUCKLES = 12;
  global int C_CUSTOM_BRASS_KNUCKLES_STRENGTH = 13;

Now, you MUST restart FQ.


AUTHOR

This modification was written by Joe Johnston <jjohn@taskboy.com> as 
part of the effort to document the FQ Scripting Environment.  

NO WARRANTY FOR THIS SOFTWARE IS EXPRESSED OR IMPLIED.  USE IT AT 
YOUR OWN RISK. 