Log in

View Full Version : [10.81] Blackd Tibia addresses 10.81



blackd
08-11-2015, 14:02
; [[[[[[[[[[[[[[[[[[[[[[[[[[[
; BEGIN AUTOMATIC UPDATE ZONE
version=10.81
DefaultTibiaFolder=Tibia
LoadedUseDynamicOffset=1
useDynamicOffset=yes
tibiaclassname=TibiaClient
tibiaModuleRegionSize=&H420000
LoginServerStartPointer=&H98B094
LoginServerStep=&H30
HostnamePointerOffset=&H4
IPAddressPointerOffset=&H20
PortOffset=&H28
adrMulticlient=&H5AA885
PLAYER_Z=&HAD1040
LEVELSPY_NOP=&H567570
LEVELSPY_ABOVE=&H56756C
LEVELSPY_BELOW=&H567574
LIGHT_TRICK_ADR=&H587842
LIGHT_TRICK_CODE=BBFF000000EB11909090
adrRSA=&H85DA30
tibiachatlog_struct=&H933970>&H40>&H3C
tibiachatlog_selchannel=&H933970>&H40>&H30>&H30
tibia_popup_title=&H93395C>&H54
MAP_POINTER_ADDR=&HB73ADC
OFFSET_POINTER_ADDR=&HB78608
adrConnectionKey=&H91DBA4
adrXOR=&H933658
adrMyHP=&HAD1030
adrMyMaxHP=&HAD1024
adrMyMana=&H933688
adrMyMaxMana=&H93365C
adrMySoul=&H933674
adrNameStart=&HB2D900
adrNChar=&HB2D900
CharDist=&HDC
LAST_BATTLELISTPOS=1299
adrNum=&HAD102C
adrXPos=&HAD1038
adrYPos=&HAD103C
adrZPos=&HAD1040
adrConnected=&H945168
RedSquare=&H933684
adrLastPacket=&H943DC2
adrSelectedCharIndex=&HACDEF0
adrCharListPtr=&HACDE68
adrCharListPtrEND=&HACDE6C
adrXgo=&HAD1028
adrYgo=&HAD1020
adrZgo=&HAD1034
adrGo=&HB2D950
adrPointerToInternalFPSminusH5D=&HB1EDB0
adrNumberOfAttackClick=&HAD1E38
; ]]]]]]]]]]]]]]]]]]]]]]]]]]]
; END - AUTOMATIC UPDATE ZONE

xikofreak
08-11-2015, 20:48
What values do you look up in adrconnected???

Hans Henrik
08-21-2015, 22:41
What values do you look up in adrconnected???
its a 1 byte integer (or bool, who knows). if the client is connected, it is not 0. if the client is connected, it is 0. what cipsoft really use the address for? no friggin clue. -- https://github.com/blackdtools/Blackd-Proxy-CLASSIC/blob/1284699b77c205449a0eecf0b50c2290c2dbd5e5/modCavebot.bas#L134

Yoyo
09-19-2015, 21:29
its a 1 byte integer (or bool, who knows). if the client is connected, it is not 0. if the client is connected, it is 0. what cipsoft really use the address for? no friggin clue. -- https://github.com/blackdtools/Blackd-Proxy-CLASSIC/blob/1284699b77c205449a0eecf0b50c2290c2dbd5e5/modCavebot.bas#L134

How can I use these addresses to create routines for Tibia? Using spells, mana pots, life ... I looked at the GitHub BlackD, but is very complex, I don't understand it, has something simpler example, just to get a sense of how to do?

Thanks and hugs.

Yoyo
09-29-2015, 04:13
To get address of hp for example, i have to sum: 0xAD1030 + 0x20 + base address?

blackd
09-30-2015, 18:42
Hi,
In order to learn the basics here you better start reading the code of my most simple programs (Blackd Light, Blackd Renamer, Tibia Music...)
Next, you can understand Blackd Safe Cheats. There you can find how to read HP doing a XOR (hp, mana, maxhp and maxmana are encrypted with a XOR operation, so you need to use another XOR to decipher)

And in the future you can finally try reading the code of Blackd Proxy, but of course that is very complex code.