Ok, I've given my main char the following script, and I have an alias:
alias name: :*
send window: %1
script: sendtoallworlds
script:
Sub sendtoallworlds(name, command, wild)
dim otherworld
for each name in world.GetWorldList
set otherworld = world.getworld (name)
otherworld.send command
next
end Sub
What I want is to type :blah blah, and have blah blah
sent to every world that I have open. What it does is send
:blah blah, and does not drop the : for all worlds, and on top of that it sends just blah blah to my main world. I figure that the alias itself is sending the blah blah to the main world, which I know I can stop, but how do I get it to drop the :, cuz i keep avatar chatting all of my commands? Thanks for any help.
alias name: :*
send window: %1
script: sendtoallworlds
script:
Sub sendtoallworlds(name, command, wild)
dim otherworld
for each name in world.GetWorldList
set otherworld = world.getworld (name)
otherworld.send command
next
end Sub
What I want is to type :blah blah, and have blah blah
sent to every world that I have open. What it does is send
:blah blah, and does not drop the : for all worlds, and on top of that it sends just blah blah to my main world. I figure that the alias itself is sending the blah blah to the main world, which I know I can stop, but how do I get it to drop the :, cuz i keep avatar chatting all of my commands? Thanks for any help.