Possible to relay a command to a single character?

Forkedman

Active Member
Title really says it all - Is it possible to relay a command to a single character?
I've looked through the Wiki but I'm pretty new at this and I'm not completely sure what I'd be looking for.

Anyway, if anyone could point me in the right direction, that's be great.
 

Forkedman

Active Member
Sorry, I should of framed the question better - I'm trying to modify EQ2botcommander and I'm wondering if it's possible to relay to a single, predetermined character instead of simply relaying to all of them.

Just a nudge in the right direction would be great, if it is possible in the first place.
 

zomguber

Active Member
I know you can do this for individual machines, but I'm not sure how to relay to individual sessions on individual machines. That's a question for Ama, Pygar or Lax (if you can catch him). Much better question for Innerspace Forums than here, honestly.
 

Valerian

ISX Specialist
You could do something like this by having a script create a global scope atom, based on the character name, on all characters. that atom could then execute its arguments when called. You would then simply relay all "charname command" and only the session that had that charname atom declared would execute it.
 

pz

Active Member
I know you can do this for individual machines, but I'm not sure how to relay to individual sessions on individual machines. That's a question for Ama, Pygar or Lax (if you can catch him). Much better question for Innerspace Forums than here, honestly.
you can, typing relay in the console and hitting enter shows you all the options. val's solution is incredibly more elegant of course.
 

ownagejoo

Well-Known Member
Relay <OtherComp>.<charname> Me.Ability["Untamed Shroud"]:Use

is the way I do it BUT you need

if ${Session.NotEqual[${Me.Name}]}
{
uplink name ${Me.Name}
}


in your custom character .iss this will assign the character name to the uplink so that it will allow that format


Ownagejoo
 
Top Bottom