Search found 72 matches

by Vooku
Fri Aug 24, 2018 1:50 am
Forum: Help Forum
Topic: How to capture this?
Replies: 18
Views: 11622

How to capture this?

Trying to collect melee data for statistical analysis. How would I go about collecting the number of hits per "round" from the data below? I round is defined from one prompt (hp/maxhp moves/maxmoves...) to the next prompt below. So the first 'round' would collect 3 hits, the 2nd round 5 hi...
by Vooku
Fri Aug 17, 2018 12:21 pm
Forum: Help Forum
Topic: How to capture and store data (and view it via an alias)?
Replies: 76
Views: 45245

Re: How to capture and store data (and view it via an alias)?

How do I do it within Mudlet?
by Vooku
Fri Aug 17, 2018 12:25 am
Forum: Help Forum
Topic: How to capture and store data (and view it via an alias)?
Replies: 76
Views: 45245

Re: How to capture and store data (and view it via an alias)?

Thanks Nyyr! Jor, question... I tried manually removing a bunch of duplicates but it when I print in game there is only 1 item on the list. Does it have to do with this line? I'm guessing there is still a reference to those items in this 'return' line and that is messing it up. return {{[1] = {2},[2...
by Vooku
Thu Aug 16, 2018 12:51 pm
Forum: Help Forum
Topic: How to capture and store data (and view it via an alias)?
Replies: 76
Views: 45245

Re: How to capture and store data (and view it via an alias)?

Wow, thanks. I'll give it a try!
by Vooku
Thu Aug 16, 2018 11:12 am
Forum: Help Forum
Topic: How to capture and store data (and view it via an alias)?
Replies: 76
Views: 45245

Re: How to capture and store data (and view it via an alias)?

Thanks! That helps a lot. With everything working good how would I go about 'fixing' the sort by date?

Also, would it be difficult to not have it add duplicates with the same item name and price?
by Vooku
Fri Aug 10, 2018 8:12 pm
Forum: Help Forum
Topic: How to capture and store data (and view it via an alias)?
Replies: 76
Views: 45245

Re: How to capture and store data (and view it via an alias)?

Thanks. Is there a web site that describes what the different parts do? Like the '+' and '*' and [A-Z], etc.?
by Vooku
Thu Aug 09, 2018 2:35 am
Forum: Help Forum
Topic: How to capture and store data (and view it via an alias)?
Replies: 76
Views: 45245

Re: How to capture and store data (and view it via an alias)?

Ok.. figured out why it wasn't capturing. The pattern... went back to the original one you posted and it works.

^(.+) sold to ([A-Z][\w'-]+) for (\d+) platinum!

Didn't like the [W'-]... [\w'-] is good.
by Vooku
Thu Aug 09, 2018 2:29 am
Forum: Help Forum
Topic: How to capture and store data (and view it via an alias)?
Replies: 76
Views: 45245

Re: How to capture and store data (and view it via an alias)?

I can't get either trigger to capture now. Using... ---------------------------------------------------------------------- Pattern: ^(.+) sold to ([A-Z][W'-]+) for (\d+) platinum! add_auction_data(matches[2],matches[4],matches[3]) cecho("\n<red>[Capturing Auction Data...]\n") -------------...
by Vooku
Tue Aug 07, 2018 1:37 pm
Forum: Help Forum
Topic: How to capture and store data (and view it via an alias)?
Replies: 76
Views: 45245

Re: How to capture and store data (and view it via an alias)?

Thanks much. I'll make the changes to the trigger when I get home. At work now and hard to do much on my iphone.
by Vooku
Tue Aug 07, 2018 12:25 pm
Forum: Help Forum
Topic: How to capture and store data (and view it via an alias)?
Replies: 76
Views: 45245

Re: How to capture and store data (and view it via an alias)?

Here is the auction_data file...