Trading Between Multiboxing Alts?

Eorzea Time
 
 
 
Language: JP EN FR DE
Version 3.1
New Items
users online
Forum » Windower » General » trading between multiboxing alts?
trading between multiboxing alts?
Offline
By sedosan 2023-04-14 15:06:39
Link | Quote | Reply
 
I tried searching for trading between alts/mules but I keep finding trading to NPCs only.

Is there a way to trade items with an alt account using a command line? I run 5 alts but I buy their gear/spells etc... via my main account. Then I trade each their proper item.

Automating this will make things more convenient!
Offline
Posts: 912
By Dodik 2023-04-14 17:28:00
Link | Quote | Reply
 
The "Trade" addon lets you set a whitelist of characters that will auto-accept join requests and auto click OK when the other character clicks ok on the trade window.

Not aware of a command line version.
[+]
Offline
By sedosan 2023-04-14 18:50:38
Link | Quote | Reply
 
Thanks for the reply! I got the trade addon but I couldn't find a help or command file to support it.
Do you have any pointers?

==== Edit ====
Code
windower.register_event('addon command', function(name, command)
    name = name and name:lower():ucfirst()
    command = command and command:lower()

    if command == 'add' then
        if not settings.whitelist:contains(name) then
            settings.whitelist:add(name)
            settings:save('all')


I saw this in the lua and figured the "add" comes after the name and not before.
Code
//trade altname add
solved it
Offline
Posts: 912
By Dodik 2023-04-14 18:58:42
Link | Quote | Reply
 
When you load it it creates a data/settings.xml file in the addons/trade directory.

Set whitelist in there, comma separated.
Code
<settings>
    <global>
        <whitelist>Char1,Char2</whitelist>
    </global>
</settings>
[+]