Rotmg Trading bot 13.2 Version 02

Posts 115 of 29 · Page 1 of 2
Rotmg Trading bot 13.2 Version 02
This trading bot can only currently connect to the uswest server.

First set the Login details for the bot , email and password. "you need to use a mule account that's never died before"
Next set Owner name, set this to your in game name.

Now you can click the connect to server button
The bot will now login to the us west server, you should wait for the console to output “my status updated” before doing anything else.

Next Position the bot by clicking the teleport to owner button.

Now send a trade request to the bot , the bot will accept the trade only from the player with the owner name.
You can now transfer the items over to the bot to be sold, the bot will automatically accept the trade.

Fill out the form, setting the item to sell and the amount of item to sell also set the item to buy and the amount of item to buy!

Now click the start trading button

The bot will automatically spam the message
"Selling 1 Life For 6 defence @yourbotsname”

Please leave me feedback, suggestion on improving the trading bots software is welcome, report bugs and problems you encounter thanks!

New features 0.2
You can have the bot automatically move to a position on the map.
The bot will automatically login back into the server on being disconnected by the server, will only reconnect, if the bot hasn’t finished selling his items.

Changes 0.2
The bot will no longer disconnected you when you click the start trading button.
Fixed the map info packet, sometimes it would completely erase the receiving buffer.
Decreased the spam message time, to 8 seconds intervals.







https://www.virustotal.com/en/file/c...is/1368121748/
Rotmg trading bot 02.zip - Jotti's malware scan
Rotmg trading bot 02_mpgh.net.zip278 KB · 322 downloads Scanning…
wow this isn't taking along time
@Hux
I hope your gonna see this thread ASAP

Good job botmaker
hey why not make the bot close the trade if the trader dosnt have the correct items?
approved...
thx for the update
I've looked all over and I can't find an answer, so I'll just leave this here.
I put in the account credentials for a mule that hasn't died/everything else as directed, but when I click the "Connect to Server" button, it does nothing for a minute, then gives me an error message.
It reads:
"Winsock Error"
"Cannot resolve ec2IP address"
Anybody else having this problem? Anyone know how to fix it?
Help!!! It always says server closed. What should i do?
Nice Release .
Getting an error: Unable to locate JRE meeting specification "1.6"

Followed all instructions and installed JRE 1.6. Did not fix the error.

Edit: Found it, just had to edit login.bat
Urgent Bug: Client is still scammable.

Selling Agate for a life, got 3 def, a spd and lifedrinker.
love it , cheers !
Quote Originally Posted by Lulzer99 View Post
Urgent Bug: Client is still scammable.

Selling Agate for a life, got 3 def, a spd and lifedrinker.
I explained to the author that you need to base the trade on the information contained in TRADE_START and not the information stored in the game-data-structure ... you will get scammed a 1000 times if you use that bot ...

here ... once again ... you need to take the inventory _AND_ tradePartnerName from the TRADE_START packet and not from previously available data ... you will get scammed and exploited a 100 times if you do so ...

Code:
   when('TRADE_START'){
    $packet->decompile;	
    my $myself=$rotmg->getObjectById($rotmg->{'objectId'});
    $rotmg->{'boolTrading'}=1;
    $rotmg->{'lastTradeStartTime'}=time();
    $rotmg->{'currentTradePartnerName'}=$packet->name;
    print '<' . $myself->name . '> [TRADESTART] receiving initial inventory from ' . $packet->name . "\n";
    
    my $myItems=$packet->myItems;
   	my $yourItems=$packet->yourItems;
   	$rotmg->{'currentTradeOwnInventory'}=$myItems;
   	$rotmg->{'currentTradeBuyerInventory'}=$yourItems;
see the last 2 lines of that code ... you use the struct from the packet ... not the previous data you get from UPDATE and NEW_TICK ...

i got many bots trading and i never got scammed because i am using the proper code ...

Posts 115 of 29 · Page 1 of 2

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?