Download
(306Kb)
Download
Updated: 03-15-11 11:19 AM
Pictures
File Info
Updated:03-15-11 11:19 AM
Created:12-24-10 02:36 AM
Downloads:4,468
Favorites:49
MD5:

stArchaeologist

Version: 1.2b
by: Safturento [More]

I was looking around for archaeology addons, but there were none that I was in love with. So naturally, I decided to write my own.

When you mouseover a progress bar, it will show you information on the artifact your currently working on. If you click on the progress bar, it will link the item in chat, that way you don't have to go digging through a loot addon or wowhead for the link.

type /starch to toggle the window.

v1.2b - Re-released v1.2, stMedia is back in the package, and hopefully keystones work properly (currently unable to test this)

v1.2 - 01/11/2011 -
Fixed issue with keystones (thanks vlacko)

v1.1 - 01/11/2011 -
Fixed solving issue
Reskinned (config option at the top of the lua file for those who want the old skin)

v1.0 - 12/24/2010 -
Release
Optional Files (0)


Post A Reply Comment Options
Unread 05-26-11, 01:26 PM  
litesung
A Flamescale Wyrmkin
 
litesung's Avatar

Forum posts: 130
File comments: 231
Uploads: 0
Can you also add an option for it to have a keybind?
Report comment to moderator  
Reply With Quote
Unread 05-13-11, 09:20 PM  
psycedelic
A Defias Bandit

Forum posts: 3
File comments: 52
Uploads: 0
4.1?

Some new rares have been added to the game and its not possible for me to link into the chat like the other things. is it a part of your addon or blizzard default thingy?
if its with your addon, will you update it? i mean... i really cant live without your addon for archeaology. period!
Report comment to moderator  
Reply With Quote
Unread 03-18-11, 01:44 AM  
Safturento
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 13
File comments: 64
Uploads: 5
Re: Dosent work with ElvUI any longer (prepareing for patch 4.1)

Originally posted by psycedelic
Lovly! everything works flawless
Thanks. :P

I plan on adding the same feature as my exp bar to automatically skin with Tukui (and ElvUI) as soon as I get home.
Report comment to moderator  
Reply With Quote
Unread 03-17-11, 11:32 PM  
psycedelic
A Defias Bandit

Forum posts: 3
File comments: 52
Uploads: 0
Dosent work with ElvUI any longer (prepareing for patch 4.1)

Lovly! everything works flawless
Last edited by psycedelic : 03-17-11 at 11:36 PM.
Report comment to moderator  
Reply With Quote
Unread 03-17-11, 11:18 AM  
nekrossa
A Kobold Labourer
 
nekrossa's Avatar

Forum posts: 0
File comments: 11
Uploads: 0
Originally posted by Safturento
updated with stMedia and (hopefully) an actual fix to the keystones issue.
very cool, thanks for this addon!!!.... [ love the style ]
Report comment to moderator  
Reply With Quote
Unread 03-15-11, 07:57 PM  
Safturento
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 13
File comments: 64
Uploads: 5
updated with stMedia and (hopefully) an actual fix to the keystones issue.
Report comment to moderator  
Reply With Quote
Unread 03-13-11, 09:19 PM  
Safturento
Premium Member
AddOn Author - Click to view AddOns

Forum posts: 13
File comments: 64
Uploads: 5
Sorry all, was in a rush when I posted the update and forgot to package stmedia. I won't have access to any of my files until tomorrow, but I'll get it fixed when I do.
Report comment to moderator  
Reply With Quote
Unread 03-12-11, 07:04 PM  
nitewarlord
A Defias Bandit
AddOn Compiler - Click to view compilations

Forum posts: 2
File comments: 49
Uploads: 1
media quick fix

Heres a quick fix for those like me that want to use this addon.

Copy the Media folder from stExperienceBar into the stArchaeologist folder.

Open stArchaeologist.toc file and delete the stMedia dependency.

Open stArchaeologist.lua.

Replace lines 3,4,5 with

Code:
local font,fontsize,flags = [[Interface\Addons\stArchaeologist\Media\homespun.ttf]], 10, "MONOCHROMEOUTLINE"
local barTex = [[Interface\Addons\stArchaeologist\Media\Flat.tga]]
local flatTex = [[Interface\Addons\stArchaeologist\Media\Flat.tga]]
save and boot into WoW and there ya go...you should have a working addon now.

Enjoy!!!
Report comment to moderator  
Reply With Quote
Unread 03-12-11, 05:05 PM  
vlacko
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
Re: Re: Re: Love it

Originally posted by liquidbase
This point I should correct with version 1.1 and the correction for the keystones. It's miserable to release an Addon with an dependency without to include or release the dependency.
With my suggested modifications v1.1 works perfectly fine.
Report comment to moderator  
Reply With Quote
Unread 03-12-11, 12:32 PM  
liquidbase
A Warpwood Thunder Caller
 
liquidbase's Avatar
AddOn Author - Click to view AddOns

Forum posts: 97
File comments: 399
Uploads: 4
Re: Re: Love it

Originally posted by vlacko
And others pointed out correctly that stMedia is a missing dependency
This point I should correct with version 1.1 and the correction for the keystones. It's miserable to release an Addon with an dependency without to include or release the dependency.
Last edited by liquidbase : 03-12-11 at 12:33 PM.
Report comment to moderator  
Reply With Quote
Unread 03-12-11, 11:08 AM  
vlacko
A Kobold Labourer

Forum posts: 0
File comments: 6
Uploads: 0
Re: Love it

Originally posted by psycedelic
i love the new color settings, sadly it still dont find my keystones but it dosent matter really for me now i just save em and sell them on ah.

Not sure if the color is supposed to be black and transparent or if it has todo with ElvUI.

Anyways good job really love it

And i got NO PROBLEMS
Yea, there're other calls to the GetArchaeologyRaceInfo() function with wrong order of return parameters. However, I didn't look into the code if this causes serious malfunction.
The correct footprint of the function is:
Code:
raceName, raceTexture, raceItemID, numFragmentsCollected, numFragmentsRequired = GetArchaeologyRaceInfo(raceIndex)
The calls appear at line 306, 742 as of version 1.2 (305 and 741 as of version 1.1). The error in line 306 is harmles, those parameters are never used. Line should be removed.
Line 742 should be changed to:
Code:
local _, _, itemID =  GetArchaeologyRaceInfo(index)
Blizzard's doing a real mess of the APIs between even minor versions.
And others pointed out correctly that stMedia is a missing dependency
Last edited by vlacko : 03-12-11 at 11:36 AM.
Report comment to moderator  
Reply With Quote
Unread 03-12-11, 10:08 AM  
nekrossa
A Kobold Labourer
 
nekrossa's Avatar

Forum posts: 0
File comments: 11
Uploads: 0
stMedia missing from package...

Originally posted by liquidbase
sers

I want to use your Addon, but after installing and log in to wow I get an Dependency Missing for an other Addon called "stMedia". I have take a look here on wowinterface but I didn't find it. You can see on the screenshot waht I mean.

i'm seeing this same problem. Love the look of this addon, but without that extra piece it's unusable...
Report comment to moderator  
Reply With Quote
Unread 03-11-11, 10:52 PM  
psycedelic
A Defias Bandit

Forum posts: 3
File comments: 52
Uploads: 0
Love it

i love the new color settings, sadly it still dont find my keystones but it dosent matter really for me now i just save em and sell them on ah.

Not sure if the color is supposed to be black and transparent or if it has todo with ElvUI.

Anyways good job really love it

And i got NO PROBLEMS
Report comment to moderator  
Reply With Quote
Unread 03-11-11, 03:00 PM  
Upirlupirina
A Kobold Labourer

Forum posts: 0
File comments: 1
Uploads: 0
Originally posted by liquidbase
sers

I want to use your Addon, but after installing and log in to wow I get an Dependency Missing for an other Addon called "stMedia". I have take a look here on wowinterface but I didn't find it.

I get the same thing for the exp addon
Report comment to moderator  
Reply With Quote
Unread 03-11-11, 02:13 PM  
liquidbase
A Warpwood Thunder Caller
 
liquidbase's Avatar
AddOn Author - Click to view AddOns

Forum posts: 97
File comments: 399
Uploads: 4
sers

I want to use your Addon, but after installing and log in to wow I get an Dependency Missing for an other Addon called "stMedia". I have take a look here on wowinterface but I didn't find it. You can see on the screenshot waht I mean.

Last edited by liquidbase : 03-12-11 at 03:35 AM.
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump:

Support AddOn Development!

You have just downloaded by the author . If you like this AddOn why not consider supporting the author? This author has set up a donation account. Donations ensure that authors can continue to develop useful tools for everyone.