• World of Warcraft Addons
Advertisement
  • World of Warcraft
  • Average Rating:

  • Your Rating

  • Share

AtlasQuest - Fan Update

  Download the Curse Client

Last Update:
Category: Map & Minimap
Tags:
Project Manager: mystery8
Current Version: 4.1.2
Downloads Today: 351
Downloads Total: 205,776
Favorites: 875
Comments: 12
  • About AtlasQuest - Fan Update
  •  

AtlasQuest is an addon for Atlas or AlphaMap that displays a list of quests for each dungeon, battleground and outdoor raid along with information and rewards for those quests.

AtlasQuest was originally created by Asurn. It is currently maintained by Thandrenn (aka Mystery8).

Visit the Atlas Forums to discuss this addon. http://www.atlasmod.com/phpBB3/viewforum.php?f=7

  • Downloads (3)
  •  
  File Name Release Type Game Version Downloads Date  
  AtlasQuest - Fan Update 4.1.2 Release 2.4.3 1,052 7/25/2008
  AtlasQuest - Fan Update 4.1.1 Release 2.4.0 1 4/25/2008
  AtlasQuest - Fan Update 4.1.0 Release 2.4.0 0 3/26/2008
  • 1 page(s)
Advertisement
  • Comments

Add Comment

Add

You need to login or register to post.

Benefits of Registration

  • Interact with hundreds of thousands of other gamers on an open social network.
  • Post your stories, news, images, videos, and other content to share.
  • Create a network with your fellow gamers or join an existing one.
  • Gain reputation for everything you do.
  • mystery8 said 

    Will do, thanks.

  • qweqq said 

    Works perfect :)

    I have just one notice, remove Atlas from RequiredDeps so users with AlphaMap can use the addon too. (seems to be working fine when i removed it)

  • lowsoul said 

    Does some1 know how the addon is called that also shows the location of normal Q's in outlands. I had an addon for it that worked with or was an Atlas addon. I dinged 70 ans trow it away ... now m alt needs it :P

    Good job on this atlasQ :D

  • mystery8 said 

    Till will be changed in the next release. Thanks

  • Yutaka said 

    Could you please remove the frameStrata="HIGH" from the XML file? I Ctrl+Click rewards from AtlasQuest, or drops from AtlasLoot and with the AQ window on the left, it covers the dressing room window.

  • qute said 

    Will there be an update for this addon soon?

  • mystery8 said 

    Yes, within the next day or so.

  • Denival said 

    May I suggest the following code change to fix an issue caused by newer versions of CT_Mod?

    Line 656 of AtlasQuest.lua should be changed to read:

    if (((beql ~= nil) and (beql.db.profile.showlevel == true)) or ((CT_Core) and (CT_Core:getOption("questLevels") == 1))) then

    This resolves the problem where quests are not showing up as blue when you have the quest levels set to "On" in CT_Mod.

  • mystery8 said 

    Thanks! I've been trying to get that CT Mod problem fixed for a bit now. Not too familiar with it and I could never get ahold of their authors.

    I'll give these a try.

    Actually, since I didn't write the code, I don't know it terribly well. I've mainly just been updating the quest data (which is simple), fixing bugs and minor twinks since Asurn is no longer maintaining it.

  • Denival said 

    While I'm suggesting "fixes" I also added the following lines during the check for coloring the quests in blue because my class specific quests, e.g. "Brutal Armor (Warrior)", weren't being picked up because in the quest log they only show up as "Brutal Armor". I don't know if this is changed at the last patch. The code below basically takes the AtlasQuest name (with the parentheses) and removes the parentheses and anything in them.

    You know your code better than I do, so this might not be right, but it seems to work for me.

    ps, pe = strfind(OnlyQuestNameRemovedNumber," %(.*%)")
    if (ps) then
    OnlyQuestNameRemovedNumber = strsub(OnlyQuestNameRemovedNumber,1,ps-1)
    end