Log in

View Full Version : Is BlackD proxy still being used?



~Tha bunny~
05-29-2010, 18:06
So this is my question.

Is the normal BlackD bot still being used?
I wanna know this because I might add a BlackD IDlist and scripts to my blog and I wanna know if it's worth the effort.

Thanks for voting people.

Kodeox
05-29-2010, 18:18
<-- No, I have never used BlackD bot. 1 50.00%

xHellsx
05-29-2010, 20:50
I am using BlackD Proxy all safe modes/stealth features turned off.

Please share your ID list and scripts :D

Friday
05-29-2010, 21:13
No, I prefer another bot.

magebot rox but nobody looks for it..

Blade
05-29-2010, 22:26
Im using blackd on money makers

~Tha bunny~
05-30-2010, 04:24
Oh yea and btw is there any way to make a decimal ID from NG bots to translate them to hexadecimal for BlackD?
Would spare me a lot of time.
Tried it with windows calculator before, but I usually end up with just 2 or 3 digits.

Loamigad
05-30-2010, 09:42
there was a php script that did that years ago.. so it's defo possible

klusbert
05-30-2010, 14:45
Oh yea and btw is there any way to make a decimal ID from NG bots to translate them to hexadecimal for BlackD?
Would spare me a lot of time.
Tried it with windows calculator before, but I usually end up with just 2 or 3 digits.

Has been around for a long time now:

Id converter by me: http://blackdtools.net/showthread.php?t=50681
And waypoint converter with suport to convert NGs loot files also, http://blackdtools.net/attachment.php?attachmentid=6009&d=1245489310
Also done by me.

Also big database with alot of items that is in hex.

~Tha bunny~
06-01-2010, 21:43
First link leads to this thread lol.

Loamigad
06-01-2010, 21:57
First link leads to this thread lol.

Not hard to see what threads he has made
But i helped you
http://www.blackdtools.net/showthread.php?t=30903
Disclaimer: I have not tested the script, and i don't know anything about it, it might be hack infested or it might not be, use your own judgement

~Tha bunny~
06-02-2010, 22:38
Ain't going to try it.
Isn't there a manual way or a online calculator or something?

klusbert
06-03-2010, 19:56
First link leads to this thread lol.

hehe sry about that, but you are to lazy to search I see:P

Anyhow, hope you find that usefull

Oijoi
06-03-2010, 20:22
Ain't going to try it.
Isn't there a manual way or a online calculator or something?
google->"decimal hexadecimal"

shouldn't be so hard to find.

~Tha bunny~
06-04-2010, 00:08
Yea but a normal calculator doesn't show the values which can be used for BlackD.

klusbert
06-04-2010, 03:23
Yea but a normal calculator doesn't show the values which can be used for BlackD.

Lets say Gold Id = D7 0B Dont remember anymore so maybe is wrong

You enter in calc(hexmode) 0BD7 and then decimal
easy if you read

Because this has been disused before.

~Tha bunny~
06-04-2010, 17:16
And how in the reversed way?

klusbert
06-04-2010, 17:46
add 3031 into dec in calc, u will get BD7 then its = D7 0B EASY!!!

If the result would be B0D7 Then Its = D7 B0 EASY

Check my calc you don't understand.

~Tha bunny~
06-04-2010, 22:31
No, I won't download your calc.
And it's not easy until I see any logic in it.
How the hell do I know if i have to put the zero in front or behind the B?

klusbert
06-05-2010, 01:30
No, I won't download your calc.
And it's not easy until I see any logic in it.
How the hell do I know if i have to put the zero in front or behind the B?

Then google my friend, BTW my calc is opensource, So it can't be any hack if you think that.

nvm useless helping you, even if I do you dont even say thank you.

Hope this helps then

To dec:



Dim b(2) As Byte
b(0) = 215 'D7
b(1) = 11 '0B
MsgBox(BitConverter.ToUInt16(b, 0))


To hex:



Dim b() As Byte = BitConverter.GetBytes(3031)
MsgBox(BitConverter.ToString(b, 0, 2))



Try this in vb.net :)