Page 1 of 1

automated trading possible ?

Posted: Mon Sep 20, 2010 5:42 pm
by Paton
Its a big hassle to switch between 2 ROM windows, when you want to trade something, cause one trade requires to so many mouse clicks.

Do we have any functions in bot or maybe ROM API, which could be used in a script so 1 rom client does this all automatic ?

Re: automated trading possible ?

Posted: Tue Sep 21, 2010 2:33 am
by Wundervice
I know someone who made this happen (wont share how of course) and I did ask about it myself here but I have no idea how to make this work. I can automate the process like doing dailies for myself or harvesting the items but since harvesting dailies stop letting you gather after u meet the requirement I cant keep it going.

Only clue i have is that said pal used two programs to make it work.

Re: automated trading possible ?

Posted: Thu Sep 23, 2010 7:19 am
by radulfizz
No need for external programs if you just want to automate the receiving side.
Get the addon Ingame Scripts, and put

Code: Select all

AgreeTrade()
AcceptTrade()      -- only correct if memory serves right ;)
into the Autoscript.

The giving side can be automated too with rombot of course, but as I understand you, thats not what you were looking for.

Re: automated trading possible ?

Posted: Sat Sep 25, 2010 7:46 pm
by romvn
Possible and easy :D
I used it for ages.

Re: automated trading possible ?

Posted: Wed Sep 29, 2010 1:57 am
by zaxahmed
I would appreciate it if someone could point out the complete automated process of trading using multi client between two characters including selecting the item and giving it to the other character, if it is possible. Thank You.

Re: automated trading possible ?

Posted: Sat Oct 02, 2010 2:03 pm
by romvn
Below are needed steps to make a trade between 2 characters, from Char1 to Char2

Char1: RequestTrade
Char2: AgreeTrade
Char1: PickupBagItem(GetBagItemInfo(1)) -- I used bag slot 1 for demonstration
Char1: ClickTradeItem(1)
Char2: AcceptTrade
Char1: AcceptTrade
Char2: AcceptTrade
Char1: AcceptTrade

The remain task you need to do is finding a way to ask Char2 to execute these commands.
Just think a bit. It's easy.
Good luck