CARVIEW |
Select Language
HTTP/2 200
date: Sat, 11 Oct 2025 22:53:21 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=fdfc2b07ee8db5b7bf5f6c76cbb2d64f9515b69dd3bac79661e92abd95ad98fda%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22V-M7drcaRlu8JFTnmirIdPzQoMjkb4aL%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d1eee079c1741b-BLR
Bottle-o-shit - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- program new;
- {$I SRL/osr.simba}
- function TRSItemFinder.VerifyItemAs(Item: string; SlotBox: TBox; MaxDifference: Double): Boolean;
- function Sqdiff(Image, Template: TMufasaBitmap): Double; //ripped from itemfinder
- var
- ImageBorder, TemplateBorder: TPointArray;
- TPA, ClearTPA: TPointArray;
- AlignedTemplate, AlignedImage: TMufasaBitmap;
- Align: TPoint;
- ClearColor: Int32;
- begin
- if Image.FindColors(ImageBorder, RS_ITEM_BORDER) and Template.FindColors(TemplateBorder, RS_ITEM_BORDER) then
- begin
- with TemplateBorder.Bounds() do
- begin
- Template.Crop(X1, Y1, X2, Y2);
- TemplateBorder := TemplateBorder.Offset(-X1,-Y1);
- end;
- // Use highest Y point of both images for alignment
- // TPA is already sorted like this with how FindColors operates.
- Align.X := Max(0, ImageBorder[High(ImageBorder)].X - TemplateBorder[High(TemplateBorder)].X);
- Align.Y := Max(0, ImageBorder[High(ImageBorder)].Y - TemplateBorder[High(TemplateBorder)].Y);
- AlignedImage := Image.Copy();
- AlignedTemplate.Init(Client.GetMBitmaps());
- AlignedTemplate.SetSize(Image.GetWidth(), Image.GetHeight());
- Template.DrawTransparent(Align.X, Align.Y, AlignedTemplate);
- // Clear these template colors on both images
- for ClearColor in [RS_ITEM_YELLOW_STACK, RS_ITEM_WHITE_STACK, RS_ITEM_GREEN_STACK, RS_ITEM_BORDER] do
- if AlignedTemplate.FindColors(TPA, ClearColor) then
- ClearTPA += TPA;
- // Clear image background on template
- if AlignedImage.FindColors(TPA, 0) then
- ClearTPA += TPA;
- AlignedTemplate.DrawTPA(ClearTPA, 0);
- AlignedImage.DrawTPA(ClearTPA, 0);
- Result := AlignedImage.MatchTemplate(AlignedTemplate, TM_SQDIFF_NORMED)[0][0];
- AlignedImage.Free();
- AlignedTemplate.Free();
- end;
- end;
- var
- images: array of TMufasaBitmap;
- i: Int32;
- Templ: TMufasaBitmap;
- begin
- images := ItemFinder.GetItemImages(Item);
- for i := 0 to High(Images) do
- begin
- Templ.FromClient(SlotBox);
- if Sqdiff(Images[i], Templ) <= MaxDifference then
- Result := True;
- Templ.Free();
- if Result then Exit;
- end;
- end;
- begin
- ItemFinder.VerifyItemAs('Bottle-o-shit', <box of where it is on ms>, 0.1);
- end.
Advertisement
Add Comment
Please, Sign In to add comment
-
📌 Instant BTC Profit Method ✅ Working
JavaScript | 8 sec ago | 0.24 KB
-
✅ Make $2500 in 20 minutes⭐⭐⭐ R
JavaScript | 10 sec ago | 0.25 KB
-
⭐⭐⭐Exchange Exploit T 3⭐⭐
Java | 11 sec ago | 0.10 KB
-
📝 MAKE $2500 IN 15 MIN ✅ Working
JavaScript | 17 sec ago | 0.24 KB
-
⭐⭐⭐Exchange Exploit T 3⭐⭐
Java | 24 sec ago | 0.10 KB
-
📌 Swapzone +37% glitch ⭐ R
JavaScript | 24 sec ago | 0.25 KB
-
💵 Make 3000$ in 20 minutes 💵
JavaScript | 27 sec ago | 0.24 KB
-
✅ Make $2500 in 20 minutes⭐⭐⭐ 3
JavaScript | 27 sec ago | 0.25 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand