I updated the PickAxe and Ore bitmaps as the other three are no longer used.
I tested the Ore.bmp on 2 different kinds of ore and I tested in Inventory and Bank.
The PickAxe.bmp was tested on 2 different Pickaxe's while equipped and while in Inventory.
Both tested positively with this:
SCAR Code:
program New;
{.include SRL/SRL.scar}
{.include SRL/SRL/Skill/Mining.scar}
var
x, y: Integer;
begin
SetUpSRL;
ActivateClient;
SetUpMining;
if Findbitmap(PickAxe, x, y) then
Writeln('word');
end.
New LoadMiningBitmaps:
SCAR Code:
{*******************************************************************************
procedure LoadMiningBitMaps;
By: Stupid3ooo
Description: Declares Mining Bitmap.
*******************************************************************************}
procedure LoadMiningBitMaps;
begin
BrokenPick := BitmapFromString(11, 6, 'z78DA73730301038A811' +
'B55CDA18569B800E5F662EA722311407401000F035515');
PickAxeHandle := BitmapFromString(14, 26, 'z78DA3330A014B82' +
'101032A99865F8412D3069B99F8750D0633E9E9C2C11F86A32E1C' +
'6C2E1CFC7979D48523A116A0BC061C2A66D2A2DE07009D42B460');
PickAxeHead := BitmapFromString(10, 7, 'z78DA33300001371CC0' +
'000720460D2E5D986CE27591AA973CF5D435C18D02003101000D7' +
'F5A19');
PickAxe := BitmapFromString(3, 10, 'beNpjYGJgYLLSkXQylAUydB' +
'WFTTXEgQwDFVELLQkgw0hNDCgLZADFbfWkIWqAgnDFuiqSsmI8KtL' +
'8YgKcksLcQHEgA4gYAIXZCCA=');
Ore := BitmapFromString(5, 6, 'beNpjYIr2NE4JMAeiUBd9BgamJD8' +
'zCAp3NYBzE3xMgQjIhTCAKM7bBMIFMtAQUByEALudFB8=');
end;