Thread Tools Display Modes
05-28-13, 07:43 AM   #21
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 1,710
Originally Posted by ravagernl View Post
I did, I only visited the required vendors for hunters. I did a /reload after each place to make sure data was saved.

EDIT: I think there's a bug in your collector, every reload it somehow clears the database for the current class...
lua Code:
  1. if(#ExonumiaDB[playerClass] == 0) then
  2.             for _, tokenID in pairs(tokenIDs) do
  3.                 ExonumiaDB[playerClass][tokenID] = ''
  4.             end
  5.         end
should probably be:
lua Code:
  1. --if(#ExonumiaDB[playerClass] == 0) then
  2.             for _, tokenID in pairs(tokenIDs) do
  3.                 ExonumiaDB[playerClass][tokenID] = ExonumiaDB[playerClass][tokenID] or ''
  4.             end
  5.         --end
You can not get the table length of a hash table right?
You're correct, I'll fix that.

Last edited by p3lim : 05-28-13 at 08:15 AM.
  Reply With Quote
05-28-13, 07:47 AM   #22
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 1,710
Updated OP, hopefully final version
Attached Files
File Type: zip p3lim-exonumia_collect-fbe25b7fd7de.zip (1.9 KB, 192 views)
  Reply With Quote
05-28-13, 08:39 AM   #23
ravagernl
Proceritate Corporis
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 1,176
New one for hunters: http://pastebin.com/tmFc2RGC
  Reply With Quote
05-28-13, 09:25 AM   #24
Be3f.
A Theradrim Guardian
 
Be3f.'s Avatar
Join Date: Jan 2011
Posts: 65
Seeing as the first one I posted was a dud, hopefully this is more useful:

http://pastebin.com/RbbnwHX2

Shaman, all vendors expect aldor.
__________________
-- Be3f.
  Reply With Quote
05-28-13, 09:34 AM   #25
Ordrosh
A Theradrim Guardian
Join Date: Sep 2008
Posts: 69
http://pastebin.com/37TJvuZJ
paladin
Vendors: Scryers, Hyjal (Instance), IoQD, Dalaran, Orgrimmar, Townlong Steppes

have fun with it
  Reply With Quote
05-28-13, 10:18 AM   #26
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 1,710
Originally Posted by Be3f. View Post
Seeing as the first one I posted was a dud, hopefully this is more useful:

http://pastebin.com/RbbnwHX2

Shaman, all vendors expect aldor.
Originally Posted by Ordrosh View Post
http://pastebin.com/37TJvuZJ
paladin
Vendors: Scryers, Hyjal (Instance), IoQD, Dalaran, Orgrimmar, Townlong Steppes

have fun with it
Those two are complete, thanks.

Last edited by p3lim : 05-28-13 at 10:20 AM.
  Reply With Quote
05-28-13, 10:22 AM   #27
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 1,710
Originally Posted by ravagernl View Post
New one for hunters: http://pastebin.com/tmFc2RGC
That one is incomplete, which vendors did you not visit?
  Reply With Quote
05-28-13, 11:25 AM   #28
ravagernl
Proceritate Corporis
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 1,176
Originally Posted by p3lim View Post
That one is incomplete, which vendors did you not visit?
AFAIK I visited all of them Can you tell me how you know that they are not complete?

EDIT: I think I'm missing forlorn/corrupted tokens.
EDIT2: http://pastebin.com/gm6Uc6qQ I counted how many entries there are, it's 92

Last edited by ravagernl : 05-28-13 at 11:51 AM.
  Reply With Quote
05-28-13, 11:49 AM   #29
Rainrider
A Firelord
AddOn Author - Click to view addons
Join Date: Nov 2008
Posts: 454
https://gist.github.com/Rainrider/5660242

I posted this earlier and it should contain complete data for hunter, warlock and druid plus for warrior without townlong steppes vendor. Or is it somehow incorrect or incomplete?
  Reply With Quote
05-28-13, 02:16 PM   #30
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 1,710
Originally Posted by ravagernl View Post
AFAIK I visited all of them Can you tell me how you know that they are not complete?

EDIT: I think I'm missing forlorn/corrupted tokens.
EDIT2: http://pastebin.com/gm6Uc6qQ I counted how many entries there are, it's 92
Then you're 5 shy :/
There's 97 tokens per class grouping, a total of 291 tokens that I'm tracking.

Originally Posted by Rainrider View Post
https://gist.github.com/Rainrider/5660242

I posted this earlier and it should contain complete data for hunter, warlock and druid plus for warrior without townlong steppes vendor. Or is it somehow incorrect or incomplete?
Hunter misses 18, warlock misses 3, warrior misses 40.
Druid I've done myself, so that one is done.


I'll try and combine your hunters and see if I can get a complete one.

Last edited by p3lim : 05-28-13 at 02:21 PM.
  Reply With Quote
05-28-13, 03:28 PM   #31
Ordrosh
A Theradrim Guardian
Join Date: Sep 2008
Posts: 69
some more data:
http://pastebin.com/86vD4YiX
monk, hunter and mage

monk obviously only townlong, since they dont have other tiertokens. but for the other 2 i think i visited all the tier vendors

can send my shaman and my priest on the same journey tomorrow if its still needed by then
  Reply With Quote
05-28-13, 03:50 PM   #32
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 1,710
Originally Posted by Ordrosh View Post
some more data:
http://pastebin.com/86vD4YiX
monk, hunter and mage

monk obviously only townlong, since they dont have other tiertokens. but for the other 2 i think i visited all the tier vendors

can send my shaman and my priest on the same journey tomorrow if its still needed by then
Thanks, hunter, mage and monk complete.

Last edited by p3lim : 05-31-13 at 07:40 AM.
  Reply With Quote
05-29-13, 07:02 AM   #33
Tonyleila
A Molten Giant
 
Tonyleila's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 758
So what data is missing? DK, WL and?
__________________
Author of: LeilaUI and Aurora: Missing Textures
__________________
  Reply With Quote
05-29-13, 09:27 AM   #34
ravagernl
Proceritate Corporis
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 1,176
Originally Posted by Tonyleila View Post
So what data is missing? DK, WL and?
Second post (At the moment of writing):
Originally Posted by p3lim View Post
Classes incomplete:
Warrior
Rogue
Priest
Death Knight
Warlock
Monk
  Reply With Quote
05-29-13, 10:56 AM   #35
Tonyleila
A Molten Giant
 
Tonyleila's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2010
Posts: 758
The chat massage is realy confusing it says Exonumia_Collect Keep opening! forever! Also sometimes it says all done for a vendor that I haven't visited before.
So I'm not shure if I have done it all right but hope this helps:
Priest (Vendors: Shattrath, Quel'Danas, Dalaran, Tonlong)
http://pastebin.com/SFXkPVQ6
__________________
Author of: LeilaUI and Aurora: Missing Textures
__________________
  Reply With Quote
05-29-13, 02:05 PM   #36
ravagernl
Proceritate Corporis
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 1,176
Originally Posted by p3lim View Post
There's 97 tokens per class grouping, a total of 291 tokens that I'm tracking.
If anyone wants to be sure they have collected all the tier tokens for their class, you can use the following little script:

Code:
local count, cid = 0, select(3, UnitClass('player'))
for tokenId, tokenTest in pairs(ExonumiaDB[cid]) do
  if tokenTest ~= '' then
    count = count + 1
  end
end
print(count..' tokens scanned.')
I used DevPad to run the script, various others can do the same.
  Reply With Quote
05-29-13, 04:16 PM   #37
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 1,710
Originally Posted by ravagernl View Post
If anyone wants to be sure they have collected all the tier tokens for their class, you can use the following little script:

Code:
local count, cid = 0, select(3, UnitClass('player'))
for tokenId, tokenTest in pairs(ExonumiaDB[cid]) do
  if tokenTest ~= '' then
    count = count + 1
  end
end
print(count..' tokens scanned.')
I used DevPad to run the script, various others can do the same.
Not entirely correct, each class gets every token, even if they can't use it.
I filter through in the last processing of the data.
  Reply With Quote
05-29-13, 06:43 PM   #38
Rainrider
A Firelord
AddOn Author - Click to view addons
Join Date: Nov 2008
Posts: 454
Oh, does this mean you consider my hunter data incomplete, because I didn't visit the plate vendor in dalaran, as I thought plate would be collected from the classes that wear plate? So how to tell whether I got everything you need on the class I collect before submitting it to you?
  Reply With Quote
05-30-13, 04:26 AM   #39
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 1,710
Originally Posted by Rainrider View Post
Oh, does this mean you consider my hunter data incomplete, because I didn't visit the plate vendor in dalaran, as I thought plate would be collected from the classes that wear plate? So how to tell whether I got everything you need on the class I collect before submitting it to you?
When I recieve the data I clean out the non-filled strings and count the lines, if it's 97 it's complete.
I could split out the tokens based on the class, but that requires quite a bit of work for little gain.
The issue with your case might just be caching issues, not much you can do about that really.

Hunter is complete now anyways.
  Reply With Quote
05-30-13, 07:27 PM   #40
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
You forgot the Orgrimmar vendors (Horde equivalents of the Stormwind ones):

http://www.wowhead.com/npc=46556
http://www.wowhead.com/npc=46555
http://www.wowhead.com/npc=58155

If you still need warlock data, I can get it for you tonight.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » Alpha/Beta AddOns and Compilations » Data gathering

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off