the new blacksmith recipes... whats goning on?! thougt blizz loves us![]()
the new blacksmith recipes... whats goning on?! thougt blizz loves us![]()
Hi, ChuiChu, could you tell me how to get the value of UI_COORDS, like:
const Coordinate UI_COORDS[UI_COUNT] =
{
// UI_BUTTON_SEARCH
Coordinate( F2R_XC(627), F2R_Y(1245) ),
}
Where does the value (627, 1245) come from? I have check the memeber (x1, y1, x2, y2) of UiObject, but I haven't retrieve any useful information.
bot is broken after minipatch again... need update...
Last edited by ztnko; 03-12-2013 at 12:29 PM.
Update bot plz.
Thx.
1.07a ...................555555555555555555
We need Chuichu god's help!!
give us a hand mister!
The source is public.. why not just update the offsets yourself?
you can continue and say "c++ is public language. why not just writing bot yourself?"we are here because we don't have enough skill even to update offsets... so if it's so easy for you then may be you can do it for us?
p.s. if anybody from us in future will learn how to update - he never ever would share his results to others. share results mean cut his income by 10 minimum...![]()
Last edited by ztnko; 03-13-2013 at 01:14 AM.
Many thanks for this great job that made me rich and powerfull !
I would have a few requests for after you have fixed v7 :
Would it be possible to add functions to browse the sell log of the game from the beginning to make stats ?
I would like to understand the code you wrote (I'm a programmer), but I miss a clue to begin ; could you help by sending a few links to start with ?
Thank you very much and regards.
ChuiChu I will be very thankful if you can do some small changes in your code of HA:
1. remove "#pragma once" from all CPP files.
2. replace "Array::CopyCollection(copy);" by "Array<TYPE>::CopyCollection(copy);" 2 times in
Core\Type\Array.hpp
3. replace "_memory = _fixed_memory;" by "this->_memory = _fixed_memory;" in
Core\Type\Array.hpp
4. replace:
Coordinate row(popup.x, popup.y + ((row - 1) * size.y));
by:
Coordinate rowCoords(popup.x, popup.y + ((row - 1) * size.y));
in "Diablo\Core\AuctionInterface.cpp"
5. Add "#include <ctype.h>" to "Diablo\Core\Trainer.cpp"
6. Convert "Diablo\Core\Trainer.cpp" to ANSI from unicode.
This is list of problems I have during compilation of HA under MinGW.
Thank for work!
so as i understand we need change numbers in these lines:
1. static const Process::Link _chain_gold[] = { 0x00EA4A58 };
2. static const Process::Link _chain_account[] = { 0x00FF6874, 0x0010, 0x0274};
3. static const Process::Link _chain_searchresults[] = { 0x00EA7500, 0x00000000 };
4. static const Process::Link _chain_sells[] = { 0x00EA7550, 0x00000000 };
5. static const Process::Link _chain_sellcount[] = { 0x00EA6080, 0x00000000 };
6. static const ULong _BASEADDRESS_FRAMECOUNT = 0x0112DD1C;
7. static const ULong _BASEADDRESS_LOGGEDIN = 0x00EA4B58;
i'am sure that number in line 1 is 0x00EA7A58, and number in line 7 is 0x00EA7B58
i think line 6 is 0x01130D44
so we need another 4 magic numbersmay be somebody can share it for us?
![]()
Last edited by ztnko; 03-13-2013 at 08:52 AM.
Thanks for the headups ztnko.
I've found the offsets, and these ones seem to be working for me:
1. static const Process::Link _chain_gold[] = { 0x00EA7A58 };
2. static const Process::Link _chain_account[] = { 0x00FF9874, 0x0010, 0x0274};
3. static const Process::Link _chain_searchresults[] = { 0x00EAA500, 0x00000000 };
4. static const Process::Link _chain_sells[] = { 0x00EAA550, 0x00000000 };
5. static const Process::Link _chain_sellcount[] = { 0x00EA9080, 0x00000000 };
6. static const ULong _BASEADDRESS_FRAMECOUNT = 0x01130D44;
7. static const ULong _BASEADDRESS_LOGGEDIN = 0x00EA7B58;
Compiled and working right now, enjoy. Thanks again to ChuiChu who put far more work that I can imagine into this.