blackdtools / Blackd-Proxy-CLASSIC

Blackd Proxy CLASSIC
MIT License
9 stars 7 forks source link

StackItems is broken on 8.0 #96

Open 108645 opened 5 years ago

108645 commented 5 years ago

Same issue as on 7.6 thread #23bugfix,when trying to stack itesm ("sorry not possible"). Can someone answer how can I handle with this?

divinity76 commented 5 years ago

please add a space to #23bugfix, eg

23 bugfix

so i can actually click on it and get redirected to the correct thread.

divinity76 commented 5 years ago

@108645 hmm, in modCavebot.bas near line 677, try replacing

     If (TibiaVersionLong = 760) Then
     sCheat = sCheat & GoodHex(res1.slotID) & " "
     End If

with

     If (TibiaVersionLong >= 760 And TibiaVersionLong <= 800) Then
     sCheat = sCheat & GoodHex(res1.slotID) & " "
     End If

and re-compile, does that fix it?

(if you don't know how to compile BlackD Proxy, check this out: https://www.blackdtools.net/showthread.php?62649-(Tutorial)-How-to-compile-BlackD-Proxy-from-source-(incl-Win-7-x64) )