Thread Tools Display Modes
08-30-10, 10:27 PM   #1
Nobgul
A Molten Giant
 
Nobgul's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2009
Posts: 693
Ah Scam Addon

So normally I level professions when I hit 80 but I have decided to lvl tailloring and enchanting at the same time as I level the toon. I know there was a addon i saw a while ago that would warn you if you were going to buy something from the ah that was sold from a vendor. IE: recipes
  Reply With Quote
08-30-10, 10:35 PM   #2
Syxx
An Onyxian Warder
 
Syxx's Avatar
AddOn Author - Click to view addons
Join Date: May 2005
Posts: 350
Swindle Preventer is one.
It hasn't been updated though.
  Reply With Quote
08-31-10, 01:09 AM   #3
Jigain
A Molten Giant
 
Jigain's Avatar
Join Date: Jul 2009
Posts: 732
Auctioneer shows you if an item is sold by any vendors, and at what cost. It's also very handy for almost everything else AH-related.
  Reply With Quote
08-31-10, 01:24 AM   #4
Torhal
A Pyroguard Emberseer
 
Torhal's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2008
Posts: 1,196
You can also use Ackis Recipe List to find out what is vendor-bought without having to go to the AH.
__________________
Whenever someone says "pls" because it's shorter than "please", I say "no" because it's shorter than "yes".

Author of NPCScan and many other AddOns.
  Reply With Quote
08-31-10, 09:18 AM   #5
Vlad
A Molten Giant
 
Vlad's Avatar
AddOn Author - Click to view addons
Join Date: Dec 2005
Posts: 793
Hehe, made a very simple "database" over items that can be sold on the auction house (that originate from vendors).

http://vlacula.no-ip.com/wow/ahripoff/AHRipoff_Data.lua

It is a LUA file that contain 3 global variable tables:
AHRipoff_IData -- item and npc id (["<item id>"]=<npc id>)
AHRipoff_VData -- npc id and their names, it supports locales so there are subtables containing each NPC name in each locale variety that Wowhead supports (["enUS"] = [["<npc id>"]="<npc name>", ...])
AHRipoff_ZData -- npc zone ([\"<npc id>\"]=<zone id>)

Have not had time to write an addon for this, but using this data it should be very efficient to check if an item is sold by a vendor or not.

For example, you open the auctionhouse and the addon only hooks tooltips when the AH frame is visible. Then by checking the item ID of the item that the mouse hovers, it can do a quick lookup in the table to find out if it's sold by a vendor or not. So far I've made it so that if the npc id is 0 that means either the vendor is unknown or that there are too many. Otherwise there is a npc id that again can be used for quick lookup using game locale and the npc id, to find the npc name and even their zone using the zone table. It's all direct lookups since the keys are unique ids, no "for" or "foreach" loops and saves lots of CPU cycles -yay!

I haven't implemented it yet, will wait for Cataclysm to enable addons. If you feel like using my data I don't mind at all.
  Reply With Quote

WoWInterface » AddOns, Compilations, Macros » AddOn Search/Requests » Ah Scam Addon

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