TLR PCX convertor v1.0;
Z. I. A. Systems 1998-2000; 

TLR picture format
Well, this format has quite simple structure.
  Width: Word;
  Height: Word; //picture dimensions information
  BitmapData: Width*Height*Byte;

This program is used to convert 256-color PCX images to format used by The Lost Rings Game.
You can use it to create your own textures or faces of heroes or source files for MPC files editor.

Usage:
 CONV filename.pcx [filename.pic] [c]
If filename.pic is not specified, unnamed.pic is taken as default filename.
Optional parameter c defines whether to convert PCX palette to TLR palette
by finding nearest RGB colors.
If palette converting is off, bitmap is converted as it is, supposing it has the right colors.

Example
 CONV myface.pcx strange.pic c
or
 CONV items1sr.pcx

