Relay Command

Ragemage

Well-Known Member
I had a bit of a problem with how my computers are set up in my new house vs my old pad. I've been using a modified version of EQ2Botcommander and was making a few buttons to deal with my new layout situation.
I could however not find how, or if its even possible, to relay the commands to 1 specific computer. So if I'm playing on Main-PC, ALT-PC is next to me, and HEAL-PC is far away I only want to relay the command to HEAL-PC. How would I write that command.

I've seen Relay All others, and relay all are there more options?
 
i've got 6 chars going on one machine
bob the tank
earl the healer
jane the dps
john the dps
mike the dps

Is there a way to relay only three of the six.

i execute relay "all other" do something on bob, the other 5 do something.
I want to relay "jane john mike" do this

relay "jane john mike" echo IT works

can this be done outside of a custom relay that whatever
 

Kannkor

Ogre
i've got 6 chars going on one machine
bob the tank
earl the healer
jane the dps
john the dps
mike the dps

Is there a way to relay only three of the six.

i execute relay "all other" do something on bob, the other 5 do something.
I want to relay "jane john mike" do this

relay "jane john mike" echo IT works

can this be done outside of a custom relay that whatever
No... relay is built into innerspace. Innerspace has no knowledge of what is happening in the game.

The reason my examples work, is they are using innerspace uplink names, and innerspace session names. It's not using any information from the game at all. If you wish to make decisions based on in-game information, you will need to write something custom.
 

uiyice

Active Member
i've got 6 chars going on one machine
bob the tank
earl the healer
jane the dps
john the dps
mike the dps

Is there a way to relay only three of the six.

i execute relay "all other" do something on bob, the other 5 do something.
I want to relay "jane john mike" do this

relay "jane john mike" echo IT works

can this be done outside of a custom relay that whatever
Look into "Relay Groups". A individual session can register itself as part of a named group, and that group can be referenced as a whole in one relay command.

So if Jane, John, and Mike all execute the command:

UPLINK RELAYGROUP -JOIN Cheese

You can then:

Relay Cheese echo It Works, and my name is \${Me.Name}

To get the expected results.

You can toss something into your logon scripts that joins the correct toons to the correct group, or a group setup script, or twist some MCP buttons to issues rawcommands. I personally have everyone do something like:

UPLINK RELAYGROUP -JOIN ${Me.Name}
UPLINK RELAYGROUP -JOIN ${Me.Archetype}
UPLINK RELAYGROUP -JOIN ${Me.Class}
UPLINK RELAYGROUP -JOIN ${Me.SubClass}

Once they're in game. That way I can always "Relay toonname etc..", "Relay Cleric etc...", "Relay Fighter...", "Relay Scout..." You of course have to change it around a bit to make a "dps" group.
 
Top Bottom