Skip to content

Commit

Permalink
D2Bot 19.3.3.100 + D2BS 1.6.3U
Browse files Browse the repository at this point in the history
- ftj reduction is now optional with -ftj
- added some UI updates to profile list and cdkey list
- starters are now chosen through drop down instead of file dialog
- improved image draw perf for limedrop
- fixed some d2bs compat issues with XP
- improved 'takescreenshot' to sync with gamedraw
  • Loading branch information
noah- committed Mar 4, 2019
1 parent d824eca commit c3bf745
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 0 deletions.
Binary file modified D2Bot.exe
Binary file not shown.
Binary file modified d2bs/D2BS.bin
Binary file not shown.
Binary file modified d2bs/D2BS.dll
Binary file not shown.
Binary file modified d2bs/D2BS.pdb
Binary file not shown.

1 comment on commit c3bf745

@DarkHorseDre
Copy link

@DarkHorseDre DarkHorseDre commented on c3bf745 Mar 4, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great work as always @noah-

Could we get a date - time - and optional location for item kept (and sold?) in d2bs and itemlog?
Something like last post here: #575

I hack added location as it can be useful to assess drop locations for kept items retrospectively, especially as itemlog persists after a d2bs crash:

var lastArea = DataFile.getStats().lastArea; // added for location of each kept item
    var desc,
        date = new Date(),
        h = date.getHours(),
        m = date.getMinutes(),
        s = date.getSeconds(),
        mm = (date.getMonth() + 1),   //start added
        yyyy = date.getFullYear(),
        dd = date.getDate(), // end added
        dateString = "[" + yyyy + (mm < 10 ? "0" + mm : mm) + (dd < 10 ? "0" + dd : dd) + "-" + (h < 10 ? "0" + h : h) + ":" + (m < 10 ? "0" + m : m) + ":" + (s < 10 ? "0" + s : s) + " Location: " + lastArea + "]"; 

Please sign in to comment.