Skip to content
 
 

Latest commit

 

History

22 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

D3Bit is a tooltip scanner for Diablo 3. You can use it to parse item stats, upload cropped tooltips, batch process screenshots, etc...

D3Bit.com - Demo Youtube Video

Project Content

The project consists of 2 parts. One is a Dll library that exposes some of the image processing and Tesseract functions. The other part is the GUI.

Static classes Screenshot, Tesseract, and ImageUtil all expose useful functions that you can call.

var procs = Process.GetProcessesByName("Diablo III");
Bitmap bitmap = Screenshot.GetSnapShot(procs[0]);
var res = Screenshot.GetToolTip(bitmap);
res.Save("z.png", ImageFormat.Png);
Tooltip tooltip = new D3Bit.Tooltip(res);
string name = tooltip.ParseItemName();
string quality = "";
string type = tooltip.ParseItemType(out quality);
double dps = tooltip.ParseDPS();
var affixes = tooltip.ParseAffixes();
tooltip.Processed.Save("s.png", ImageFormat.Png);

Sorry for the lack of doc and comment right now. But I'll try to help anyone with any problem over at the Support Forum.

About

Diablo 3 Item Tooltip scanner and stats analyzer

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors