Well before I add more.
SCAR Code://-----------------------------------------------------------------//
//-- Scar Standard Resource Library --//
//-- Herblore routines --//
//-----------------------------------------------------------------//
// * procedure SetupHerblore; // * SRL
// * procedure VialCheck; // * The Man
{*******************************************************************************
procedure SetupHerblore;
By: SRL
Description: Declares Global Bitmaps.
*******************************************************************************}
procedure SetupHerblore;
begin
end;
{*******************************************************************************
procedure VialCheck;
By: The Man
Description: Returns true if there is a vial in the inventory
*******************************************************************************}
procedure VialCheck;
var
VialDTM : Integer;
begin
VialDTM := DTMFromString('78DA6314646060506040038C4824906607125' +
'204D4F002091E22D4B0135003720F33013562408293801A512021' +
'40408D349090C6AF0600B0BB0126');
if CountItems(Vialdtm, dtm, []) then
Result := True
end;
Just want to check if this is right.
T~M

