Page 2 of 9

Re: What do YOU need explained

Posted: May 7th, 2015, 3:17 am
by HellsWrath
You can't use vi2 for commands. She did this so her server isn't flooded with chat. Vi2 uses a chat system she wrote that is hosted on her home server, it is not IRC.

You can use VCS to detect the Vi2 chat and relay it, but don't over do it.

Re: What do YOU need explained

Posted: May 8th, 2015, 7:41 pm
by Starcrusher
Ok thanks for the info HW.

Re: What do YOU need explained

Posted: May 11th, 2015, 11:30 am
by Kaitro
Is there a way to detect a locked door through expressions?

Re: What do YOU need explained

Posted: May 11th, 2015, 5:43 pm
by Dmdtt
no but you can detect if a door is open/closed with wobjectgetisdooropen[wobjectfindnearestdoor[]]

Re: What do YOU need explained

Posted: May 15th, 2015, 9:56 am
by Starcrusher
I'm not really clear on how to implement a "follow" command in the control meta. I know it says to load a "follow route", but it isn't clear to me what that must consist of. Do I really need to make a separate route for the follower and designate it as a "follow" route? I really just want them to target the main toon and use the follow character of vtank.

Re: What do YOU need explained

Posted: May 15th, 2015, 12:17 pm
by HellsWrath
Starcrusher wrote:I'm not really clear on how to implement a "follow" command in the control meta. I know it says to load a "follow route", but it isn't clear to me what that must consist of. Do I really need to make a separate route for the follower and designate it as a "follow" route? I really just want them to target the main toon and use the follow character of vtank.

There should be a help file with ChaosControl, and Dm's instructions are on his thread.

You simply create an empty route named FollowCharname or something. Select the person to follow and hit the FC button on the MiniRemote. BAM you have a follow route.

Now embed it in to the FollowMe rule that contains the route.

At the moment there isn't a way to just "target the main toon" since there's no way to say "this is the leader" without also hard-coding each route so the option is there.

Re: What do YOU need explained

Posted: May 16th, 2015, 1:40 am
by Starcrusher
I was able to get it working. Thanks again for the help.

Re: What do YOU need explained

Posted: May 19th, 2015, 12:11 am
by Yoggi
So I'm trying to get the other characters that are following my main character to go through portals on there own. Basically trying to get them to go into the portals the blue flame stautes at VR summon. A lot of times I can't alt tab fast enough to get two toons through. So if anyone can help that would be great. I've not yet made a successful meta. But I've read the guide, still having trouble though.

Re: What do YOU need explained

Posted: May 19th, 2015, 10:53 am
by HellsWrath
Yoggi wrote:So I'm trying to get the other characters that are following my main character to go through portals on there own. Basically trying to get them to go into the portals the blue flame stautes at VR summon. A lot of times I can't alt tab fast enough to get two toons through. So if anyone can help that would be great. I've not yet made a successful meta. But I've read the guide, still having trouble though.
When a character is following you they will not automatically enter a portal. Especially not portals that must be used and cannot be walked through.

They will follow through sometimes due to lag, but usually your followers go running off in the direction your leader portaled to.

You must issue a command for the followers to react to and issue /mt use closestportal or /mt use portalname

closestportal doesn't work for everything.

There are two multi-char control metas you can use to learn from.

http://www.virindi.net/wiki/index.php/P ... ar_Control

Re: What do YOU need explained

Posted: May 19th, 2015, 2:45 pm
by yaroz
I don't use the /mt use closestportal, since not all portals are actually portals. What I did was set up a !usethis command where it will issue a new Expression Chat of

Code: Select all

\/f \!usenearest +cstr[wobjectgetobjectclass[wobjectgetselection[]]]
Then I have three rules that act on the /f !usenearest ## (14 - npc, 37 - portal, or 25 - vendor), which will do an Expression Chat of this:

Code: Select all

actiontryuseitem[wobjectfindnearestbyobjectclass[##]] (substitue ## for the actual number)
I think Matron in colo mini's is actually a NPC, and doing a /mt useclosestportal would always send them packing to one of the other minis. This also works on the Tentical Weapons quest.. can't remember the name of the portal though. Until we get substrings, I think this is probably the best way to do it.