OutdatedRotmg Trading bots Version 08

Posts 3145 of 64 · Page 3 of 5
Error code 465??? couldnt find crypto.dll??? anyone help?
Make sure crypto.dll is at the root of the RoTMG Trade Bot exe folder, should be same directory as the exe. If not, you can find it through Google or something. Think you should probably ask Bot where he got it so you don't get a virus.
Nice to see you back @BloodySpork

i programmed the crypto.dll to do the RSA encryption, using the Crypto++ library

here the code

Code:
PCHAR encyrpt(LPSTR message)
{
  RSAFunction rs;
   Integer it("138058324507555049234246734000441140752323800141033219108446290424209651149061550256257123074054375779322028941830252756690799794787415386877876745524597141573809959460210645347060554401228507084399841512197648738006400503980279149209427806825118624928692857963634531857449103468249102954313978230908185591117");
    
  rs.SetModulus(it);
  rs.SetPublicExponent(65537);
  
  //take the above information writes to a file
   HexEncoder  pubFile(new FileSink("pkey.txt"));
 rs.DEREncode(pubFile);
 pubFile.MessageEnd();
 
//perform encryption
   //
   FileSource pubFile2("pkey.txt", true, new HexDecoder);
    RSAES_PKCS1v15_Encryptor pub(pubFile2);
 
    RandomPool randPool;
  
    std::string result;
    StringSource(message, true, new PK_EncryptorFilter(randPool,   pub,    new Base64Encoder(new StringSink(result))));
    
    char * writable = new char[result.size() + 1];
    std::copy(result.begin(), result.end(), writable);
    writable[result.size()] = '\0'; // don't forget the terminating 0
    return writable;    
}
Quote Originally Posted by Botmaker View Post
Nice to see you back @BloodySpork

i programmed the crypto.dll to do the RSA encryption, using the Crypto++ library

here the code

Code:
PCHAR encyrpt(LPSTR message)
{
  RSAFunction rs;
   Integer it("138058324507555049234246734000441140752323800141033219108446290424209651149061550256257123074054375779322028941830252756690799794787415386877876745524597141573809959460210645347060554401228507084399841512197648738006400503980279149209427806825118624928692857963634531857449103468249102954313978230908185591117");
    
  rs.SetModulus(it);
  rs.SetPublicExponent(65537);
  
  //take the above information writes to a file
   HexEncoder  pubFile(new FileSink("pkey.txt"));
 rs.DEREncode(pubFile);
 pubFile.MessageEnd();
 
//perform encryption
   //
   FileSource pubFile2("pkey.txt", true, new HexDecoder);
    RSAES_PKCS1v15_Encryptor pub(pubFile2);
 
    RandomPool randPool;
  
    std::string result;
    StringSource(message, true, new PK_EncryptorFilter(randPool,   pub,    new Base64Encoder(new StringSink(result))));
    
    char * writable = new char[result.size() + 1];
    std::copy(result.begin(), result.end(), writable);
    writable[result.size()] = '\0'; // don't forget the terminating 0
    return writable;    
}
Couldnt you just make that a class for more reliability for the people are having troubles with that error?
Quote Originally Posted by krazyshank View Post
Couldnt you just make that a class for more reliability for the people are having troubles with that error?
Sorry
Do you mean “couldn’t find crypto.dll???” or you asking me to make a RSA class to help people make hacks.

The “couldn’t find crypto.dll???” error, surprisingly requires a lot of explanation
The program gets a special folder location, and extracts the crypto.dll from the “data,dat” file to the install location, and there‘s more to it, there are 6 possible fail points, it’s a bit complex to explain
Quote Originally Posted by Botmaker View Post
Sorry
Do you mean “couldn’t find crypto.dll???” or you asking me to make a RSA class to help people make hacks.

The “couldn’t find crypto.dll???” error, surprisingly requires a lot of explanation
The program gets a special folder location, and extracts the crypto.dll from the “data,dat” file to the install location, and there‘s more to it, there are 6 possible fail points, it’s a bit complex to explain
Yeah why not make it a class in the application?
Its a pretty short dll not made by a third party, so I dont see why not.
Quote Originally Posted by krazyshank View Post
Yeah why not make it a class in the application?
I did try to include the RSA into the app but I couldn’t work it out
http://www.mpgh.net/forum/655-realm-...rypto-api.html

Quote Originally Posted by krazyshank View Post
Its a pretty short dll not made by a third party, so I dont see why not.
Crypto++ library is required, i had to compile it from source code into a lib and then use the Crypto++ include files to make the RSA function and dll.
Could someone help me with this? I keep getting this error:

connected
disconnect called
server closed
disconnect called
Account credentials not valid
0
fail
Yea mine is having errors as well.
Hey botmaker, idk whats wrong, it opens now but its sooo broken for me atleast, ill watch my bot in the nexus, itll dc and rc repeatedly, not move anywhere, or say anything, what am i doing wrong?
The current error is the fact that it is out of date. can you update it please?

Edit: Im a retard... didnt see the version thing at the bottom..

Now it says server closed?
Quote Originally Posted by MRPIGILAY View Post
Hey botmaker, idk whats wrong, it opens now but its sooo broken for me atleast, ill watch my bot in the nexus, itll dc and rc repeatedly, not move anywhere, or say anything, what am i doing wrong?
I plan to look into fixing the issue with the auto loot and trading bot, I’ve just not got around to it yet, also this problem "server closed connected repeat" only happens to me on my crap vps, but not on my main home computer, so am guessing it as something to do with the computer specs and my code.

it will get fixed but when i get around to it.
Quote Originally Posted by Botmaker View Post
so am guessing it as something to do with the computer specs and my code.
I got i7 3500Ghz, 8GB Ram, and Nvidia GTX 680 if that helps.

Also my connection speed:
no that doesn’t help!

it works for some and not for other's, not sure why, i'll be looking into when rotmg is updated next
EXPLAIN THIS BOTMAKER

im from latin america, and i got a try to loggin from germany... nice move...
good for me account wasnt filled with items yet

Posts 3145 of 64 · Page 3 of 5
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?