+++ NOT A MACROQUEST SOLUTION +++
+++ WORKAROUND TO COUNT/LIST ITEMS WITH WINDOWS POWERSHELL +++Start, Run, type
powershell and paste this line into the (ps)-commandprompt (Win7)
Search "Powershell" (Win8)
(I know, Chrom is using Windows 8+ -> Powershell is installed on Windows 8/8.1).1. How many "A Fabulous Stone" id=120744 has Chrom in his inventory/bank/aug'ed in items (= AC100-Aug from HoH) Code: Select all
(Invoke-WebRequest -Uri http://www.thehiddenforest.org/webtools/magelo/character.php?char=Chrom).Links.href | select-string 120744
OUTPUT:
http://www.thehiddenforest.org/webtools/items.php?id=120744
http://www.thehiddenforest.org/webtools/items.php?id=120744
http://www.thehiddenforest.org/webtools/items.php?id=120744
http://www.thehiddenforest.org/webtools/items.php?id=120744
http://www.thehiddenforest.org/webtools/items.php?id=120744
http://www.thehiddenforest.org/webtools/items.php?id=120744
Code: Select all
(Invoke-WebRequest -Uri http://www.thehiddenforest.org/webtools/magelo/character.php?char=Chrom).Links.href | select-string 120744 | measure
Count : 6
Average :
Sum :
Maximum :
Minimum :
Property :
-> He has 6 AC100-Augs.
2. Which AC50/55-Augs has Chrom ?Item-ids:
Aviaks=120148,120149,120150
Kodiak=121483,121484,121485
Sharks=121508,121509,121510
Code: Select all
(Invoke-WebRequest -Uri http://www.thehiddenforest.org/webtools/magelo/character.php?char=Chrom).Links.href | select-string -pattern 120149,120150,120151,121483,121484,121485,121508,121509,121510 | sort
OUTPUT:
http://www.thehiddenforest.org/webtools/items.php?id=120149
http://www.thehiddenforest.org/webtools/items.php?id=120150
http://www.thehiddenforest.org/webtools/items.php?id=121483
http://www.thehiddenforest.org/webtools/items.php?id=121484
http://www.thehiddenforest.org/webtools/items.php?id=121485
http://www.thehiddenforest.org/webtools/items.php?id=121508
http://www.thehiddenforest.org/webtools/items.php?id=121509
http://www.thehiddenforest.org/webtools/items.php?id=121510
-> He got all.
And Sinaette ?
Code: Select all
(Invoke-WebRequest -Uri http://www.thehiddenforest.org/webtools/magelo/character.php?char=Sianette).Links.href | select-string -pattern 120149,120150,120151,121483,121484,121485,121508,121509,121510 | sort
OUTPUT:
http://www.thehiddenforest.org/webtools/items.php?id=120149
http://www.thehiddenforest.org/webtools/items.php?id=120150
http://www.thehiddenforest.org/webtools/items.php?id=121483
http://www.thehiddenforest.org/webtools/items.php?id=121485
http://www.thehiddenforest.org/webtools/items.php?id=121508
-> only 5 ! (Slackness...)
For a better performance with multiple selects, you can save the result of the web-request in a variable.
Load the webrequest into Variable $toon:Code: Select all
$toon = Invoke-WebRequest -Uri http://www.thehiddenforest.org/webtools/magelo/character.php?char=Chrom
And use the variable to search for item-ids:$toon.Links
$toon.Links.href
$toon.Links.href | select-string 120744
$toon.Links.href | select-string 121000
Scripting-Experts can fill an excel-spreadsheet for each character and check which important augs/items an alt is missing.
--
Nemen