Search found 28 matches

by HittingSmoke
September 14th, 2016, 12:13 pm
Forum: VT: Meta Support
Topic: ChatMessageCapture syntax
Replies: 8
Views: 6012

Re: ChatMessageCapture syntax

one slight correction for this chat capture though (^(\[[A-z]+?\] |)You|.*\<Tell:IIDString:.+:(getcharstringprop[1])\>.+\<\\Tell\>) (say|says|tells you), \"!make (?<amount>.*) (?<item>.*)\"$ it is not reacting off getcharstringprop[1] in this example it is reacting off You near the beginn...
by HittingSmoke
September 14th, 2016, 11:59 am
Forum: VT: Meta Support
Topic: ChatMessageCapture syntax
Replies: 8
Views: 6012

Re: ChatMessageCapture syntax

Will an expression work in that? Could I use: (^(\[[A-z]+?\] |)You|.*\<Tell:IIDString:.+:(getcharstringprop[1])\>.+\<\\Tell\>) (say|says|tells you), \"!make (?<amount>.*) (?<item>.*)\"$ ...to make it run only by the character the meta is running on without having to hard-code the meta to ...
by HittingSmoke
September 14th, 2016, 11:23 am
Forum: VT: Meta Support
Topic: ChatMessageCapture syntax
Replies: 8
Views: 6012

Re: ChatMessageCapture syntax

Will an expression work in that? Could I use: (^(\[[A-z]+?\] |)You|.*\<Tell:IIDString:.+:(getcharstringprop[1])\>.+\<\\Tell\>) (say|says|tells you), \"!make (?<amount>.*) (?<item>.*)\"$ ...to make it run only by the character the meta is running on without having to hard-code the meta to s...
by HittingSmoke
September 14th, 2016, 2:05 am
Forum: VT: Meta Support
Topic: ChatMessageCapture syntax
Replies: 8
Views: 6012

ChatMessageCapture syntax

I'm trying to use ChatMessageCapture on Fellowship messages for a potential meta replacement for the old Make It! plugin. I've found examples for tells and /vcg but nothing actually documents why there are parts that are so different from generic chat command matches. The wiki doesn't mention it at ...
by HittingSmoke
September 13th, 2016, 11:16 pm
Forum: Utilities and Plugins
Topic: Any way to get Make It! working these days?
Replies: 2
Views: 3437

Re: Any way to get Make It! working these days?

I haven't used MakeIt! in a long time but you could expand upon this - http://www.immortalbob.com/phpBB3/viewtopic.php?f=6&t=283 I'm terrified to think how large that meta would be as it would require every single item + recipe to be in the meta itself. The real problem is getting all those rec...
by HittingSmoke
September 13th, 2016, 5:39 pm
Forum: Utilities and Plugins
Topic: Any way to get Make It! working these days?
Replies: 2
Views: 3437

Any way to get Make It! working these days?

I installed it from Silo's site. It appeared to work okay until I tried to update the recipe database from the config tab. It would crash the client. I tried downloading the recipe XML manually but after that but the client just crashed on every start until I removed Make It. I used to love this for...
by HittingSmoke
August 21st, 2016, 2:48 pm
Forum: VT: Meta Support
Topic: Is there a way to use a variable in a chat command?
Replies: 7
Views: 5525

Re: Is there a way to use a variable in a chat command?

You would never type "Set Meta State: Return" in a chat command. That's just the text displayed in meta when you select the rule from the action dropdown. You are correct, a + is used for concatenation. I copied that example from Dmdtt's guide linked above: Switching to a different meta w...
by HittingSmoke
August 20th, 2016, 12:24 pm
Forum: VT: Meta Support
Topic: Is there a way to use a variable in a chat command?
Replies: 7
Views: 5525

Re: Is there a way to use a variable in a chat command?

not exactly in meta 1 you run low on pack space you would send the call action at the same moment you also load the next meta so All{Chat Command: /vt meta load SellPeas, Call: Selling, Return to: FiunPeasReturn} now the state you are returning to will be one you actually make in the SellPeas meta ...
by HittingSmoke
August 19th, 2016, 9:10 pm
Forum: VT: Meta Support
Topic: Is there a way to use a variable in a chat command?
Replies: 7
Views: 5525

Re: Is there a way to use a variable in a chat command?

yup I posted a write up about this actually in the meta tips and tricks thread. http://www.immortalbob.com/phpBB3/viewtopic.php?f=24&t=60 scroll down to where I explain examples for how to use a call. basic premise is though when you load meta 2 or 3 you setup a call and return, then in that me...
by HittingSmoke
August 19th, 2016, 7:27 pm
Forum: VT: Meta Support
Topic: Is there a way to use a variable in a chat command?
Replies: 7
Views: 5525

Is there a way to use a variable in a chat command?

For example let's say I have meta profile 1, 2, and 3. Meta profile 1 is a profile that is loaded by 2 or 3, then I would like 2 or 3 to return to 1 when complete. The way I would like to accomplish this is to have profiles 2 and 3 set a variable when run like setvar[currentprof, 2] then when 1 is f...