Download
(6Kb)
Download
Updated: 07-25-09 12:22 PM
Updated:07-25-09 12:22 PM
Created:unknown
Downloads:12,713
Favorites:76
MD5:

Get To The Point  Popular! (More than 5000 hits)

Version: r20090725
by: Shadowed [More]

Lets you auto skip gossip, complete quests or accept quests. You can add quests to be accepted/gossip skiped by holding the ALT key down and clicking the quest you want, and if you hold down CTRL and click the text it'll auto accept the quest. Quests that have item requirements have to be completed manually once so it can learn the item requirements.

It can automatically figure out what quests to auto complete so it'll always use the highest turnin one when available, for example if you have 23 Sunfury Signets it'll do "More Sunfury Signet" twice, and then complete Single Sunfury Signet three times.

Auto skipping/accepting can be disabled by holding down SHIFT before talking to the NPC, and you can remove things by holding down ALT + Clicking again, or CTRL + Clicking

commit 80501c709b9f0ce7fe412efff140764200823055
Author: Shadowed <[email protected]>
Date: Sat Jul 25 11:22:13 2009 -0700

* Fixed a silly typo causing errors on line #229

commit 2670c02a47c303a9a037109e4b31cfda03a63fc8
Author: Shadowed <[email protected]>
Date: Tue Jul 14 13:26:36 2009 -0700

* Fixed an error when trying to complete a quest thats not on the accept list

commit 795fb3b02ffa1783472d517b90c8659a50c6f11e
Author: Shadowed <[email protected]>
Date: Mon Jul 13 12:07:21 2009 -0700

* Moved to checking what items a quest requires whenever possible to make sure the info is up to date without requiring it to be readded
* Moved to using _G instead of getglobal
* Random code cleanup

commit a7a869fa59349595b9f4e1f91894306d810a7311
Author: Shadowed <[email protected]>
Date: Fri Jan 23 20:34:01 2009 +0000

* Fixed QUEST_PROGRESS not doing a string trim because Blizzard loves random whitespaces (Fixes some quests not being auto turned in/accepted like the Shipment JC daily ones)
* TOC bump

commit 19f2210db62403359105fde62299e813b2a20d3b
Author: Shadowed <[email protected]>
Date: Sun Sep 7 18:18:23 2008 +0000

* Improved color code stripping, which I stole from Industrial, who stole it from me!

commit fa4bd46ae1970c1d20340c77919427803bff709e
Author: Shadowed <[email protected]>
Date: Mon Mar 31 19:44:04 2008 +0000

* More fixes for quests with the same item requirements (Smuggled Mana Cells, before portal open + after)

commit c332bc8478a338aed261c41beb8f23a3baf7ecc8
Author: Shadowed <[email protected]>
Date: Mon Mar 31 19:37:27 2008 +0000

* Added a quest completion check to see if we should auto turnin a quest. This is to fix quests like "Blood for Blood" which has an item required, but you'll always have it.

commit 2a4c6c91d92b5c92a0740b415a82a223a76c5177
Author: Shadowed <[email protected]>
Date: Sat Mar 15 18:19:08 2008 +0000

* Adding quests to auto turnin/skip from ALT + "Complete Quest" button will actually add it to that list now
* Fixed up the auto complete logic for quests that only fire QUEST_COMPLETE (BG dailies)

commit dcee42f94dc432f1c0daafcf96433be9e03ecda8
Author: Shadowed <[email protected]>
Date: Tue Jan 29 00:45:08 2008 +0000

* Errr, debug code is bad

commit bc76dd162d3ef20788af30ef528744eda014cdb7
Author: Shadowed <[email protected]>
Date: Tue Jan 29 00:44:50 2008 +0000

* Will now strip any color code instead of just |cff000000 if you were running into issues with things not auto completing changes are you will need to remove/add them again
Optional Files (0)


Post A Reply Comment Options
Unread 09-12-09, 03:30 AM  
servi
A Kobold Labourer

Forum posts: 0
File comments: 70
Uploads: 0
Well addon is rly awsome i even use it in ulduar when we wipe a lot at some bosses i just set specific teleport so i dont have to click teleport every time ;]

In most cases when i click NPC it auto accept/Turn in quest but in some when i click NPC i have to click Quest and than it auto accept/auto turn in quest can You explane why is that?
Report comment to moderator  
Reply With Quote
Unread 07-25-09, 11:57 AM  
Shadowed
...
Featured Addon Author

Forum posts: 387
File comments: 2513
Uploads: 83
Hahah that was stupid of me, was confused why it happened. Thanks Mikord pushing a fix
Last edited by Shadowed : 07-25-09 at 11:57 AM.
Report comment to moderator  
Reply With Quote
Unread 07-25-09, 11:51 AM  
Mikord
A Theradrim Guardian
AddOn Author - Click to view AddOns

Forum posts: 61
File comments: 503
Uploads: 2
Movarrin/Shadowed:

The problem is because line 229 is expecting a table:

for itemid in pairs(GTTP_List[questName]) do
Quests that don't require items for turn in have the entry in GTTP_List set to the boolean value of true versus of a table containing a list of items.

GTTP_List = {
["vile like fire!"] = true,
}
I was able to fix it by by wrapping the following around it.
if type(GTTP_List[questName]) == "table" then
--existing code
end
Last edited by Mikord : 07-25-09 at 11:53 AM.
Report comment to moderator  
Reply With Quote
Unread 07-22-09, 08:28 AM  
Movarrin
Premium Member
Premium Member

Forum posts: 12
File comments: 74
Uploads: 0
I rolled back to r1094 and the issue is gone.

I don't know if it makes any difference, but I do the Shadow Vault quests while doing the Argent Tourney dailies. When I try to turn in Vile Like Fire, I get the error.

Once I turn those in, the error stops happening.
Report comment to moderator  
Reply With Quote
Unread 07-22-09, 08:11 AM  
Movarrin
Premium Member
Premium Member

Forum posts: 12
File comments: 74
Uploads: 0
Nope, this did not work I am still getting this error after updating to the new release again, and running your /script.

Date: 2009-07-22 10:09:48
ID: 1
Error occured in: Global
Count: 1
Message: ..\AddOns\GetToThePoint\GetToThePoint.lua line 229:
bad argument #1 to 'pairs' (table expected, got boolean)
Debug:
[C]: ?
[C]: pairs()
GetToThePoint\GetToThePoint.lua:229: ?()
GetToThePoint\GetToThePoint.lua:358:
GetToThePoint\GetToThePoint.lua:353
AddOns:
Swatter, v5.5.4293 (WombatII)
ActionBarSaver, v
Aloft, v2.5.2
AloftClassIcon, v1.0.0
AloftCombatText, v1.0.0
AloftCrowdControl, v1.0.0
AloftHealthBarDeficit, v1.0.2
AloftManaBar, v1.0.1
AloftManaData, v1.0.1
AloftManaText, v1.0.2
AloftStackedPointsText, v1.0.0
AloftThreatBar, v1.1.0
AloftThreatData, v1.0.1
AloftThreatText, v1.0.2
AucAdvanced, v5.5.4293 (WombatII)
AucFilterBasic, v5.5.4293 (WombatII)
AucFilterOutlier, v5.5.4293.2531
AucMatchUndercut, v5.5.4293.2531
AucScanData, v5.5.4293 (WombatII)
AucStatClassic, v5.5.4293 (WombatII)
AucStatHistogram, v5.5.4293 (WombatII)
AucStatiLevel, v5.5.4293 (WombatII)
AucStatPurchased, v5.5.4293 (WombatII)
AucStatSales, v5.5.4293.2842
AucStatSimple, v5.5.4293 (WombatII)
AucStatStdDev, v5.5.4293 (WombatII)
AucStatWOWEcon, v5.5.4293.2530
AucUtilAHWindowControl, v5.5.4293.3311
AucUtilAppraiser, v5.5.4293.2530
AucUtilAskPrice, v5.5.4293.3175
AucUtilAutoMagic, v5.5.4293.3142
AucUtilCompactUI, v5.5.4293.2530
AucUtilEasyBuyout, v5.5.4293.3583
AucUtilItemSuggest, v5.5.4293.3108
AucUtilPriceLevel, v5.5.4293.2545
AucUtilScanButton, v5.5.4293.2530
AucUtilScanFinish, v5.5.4293.2530
AucUtilScanProgress, v5.5.4293.2530
AucUtilSearchUI, v5.5.4293.3655
AucUtilSimpleAuction, v5.5.4293.0
AucUtilVendMarkup, v5.5.4293.2530
Auditor2, v4.0
AutoBar, vv3.01.02.23 beta
Babylonian, v5.1.DEV.130
Bartender4, v4.3.3
Broker2FuBar, v1.0
BrokerAllStats, v1.2.3-release
BrokerAloft, v1.0.0
BrokerAuditor, v1.0
BrokerChannelWatch, v2.3
BrokerTalentSwitch, v1.9.6
BrokerWallet, v1.11
ButtonFacade, v3.1.270
ButtonFacadeApathy, v3.1.66
ButtonFacadeCaith, v3.0.50
ButtonFacadeElegance, v3.1.1
ButtonFacadeEntropy, v3.1.49
ButtonFacadeFrozen, v3.0.2
ButtonFacadeGears, v3.1.40
ButtonFacadeItemRack, v2.0
ButtonFacadeLiteFlat, v3.0.2
ButtonFacadeLiteStep, v3.1.41
ButtonFacadeOnyx, v3.1.47
ButtonFacadeSerenity, v3.1.41
ButtonFacadesimpleSquare, v1.2
ButtonFacadeTones, v3.1.0
ButtonFacadeTrinity, v30100.1
Cartographer, v2.0
CartographerBattlegrounds, v2.0
CartographerCoordinates, v2.0
CartographerFoglight, v2.0
CartographerGroupColors, v2.0
CartographerGuildPositions, v2.0
CartographerInstanceMaps, v2.0
CartographerLookNFeel, v2.0
CartographerWaypoints, v2.0
CartographerZoneInfo, v2.0
Chinchilla, vv2.0.7
ClassTimer, v2.2
Configator, v5.1.DEV.130
CraftyGnome, v1.0
CTMailMod, v3.008 (CTMod 3.0)
DBMCore, v
DebugLib, v5.1.DEV.130
DoTimer, v4.3.5
DoubleWide, v
eePanels2, v2.0
EquipCompare, v2.16
FBMergeDatabase, v0.9.6
FBTrackingFrame, v0.9.6d
FishingBuddy, v0.9.6n
FlightMap, v
FreeRefills, v2.0
FriendsWithBenefits, v3.0.9.3
FuBar, v
FuBarAloftFu, v1.0.0
FubarAutoLootFu, v1.0
FuBarBagFu, vv1.1
FuBarCAFu, v
FuBarClockFu, v3.0
FuBarDurabilityFu, v2.11
FuBarFactionsFu, v2.2.1-79
FuBarFarmerFu, v2.0.$Revision: 63418 $
FuBarFishingBuddyFu, v2.2d
FuBarFriendsFu, v2.4.3-102
FuBarFuXPFu, v3
FuBarGarbageFu, v2.0.$Revision: 79607 $
FuBarGroupFu, v1
FuBarGuildFu, v2.4.3-116
FuBarItemRackFu, v1.1
FuBarKungFu, v2.0
FuBarLocationFu, v3.0
FuBarLuckyCharms, v1.8.6
FuBarMailFu, v2.0
FuBarPerformanceFu, v2.0.0
FuBarRecountFu, v3.7
FuBarRestFu, vv1.3.1
FuBarSpeedFu, v2.0.$Revision: 55081 $
FuBarTrackerFu, v2.4 ($Revision: 76255 $)
GetToThePoint, v
IceHUD, v1.5.9 (Revision: 409)
Informant, v5.5.4293 (WombatII)
ItemRack, v
LibBabbleZone30, v
LibSharedMedia30, v3.0-56
LightHeaded, v293
Livestock, v1.1.6
MikScrollingBattleText, v5.4.61
MobInfo2, v3.72
MonkeyBuddy, v
MonkeyLibrary, v
MonkeyQuest, v
MoveAnything, v3.0.2-7
oGlow, v1.12
Omen, v3.0.7
OmniCC, v2.5.5
OpenContainer, v1.0.2
oRA2, v2.0.$Revision: 657 $
Overachiever, v0.44
OverachieverTrade, v0.44
Possessions, v2.0.2o v5
PowerAuras, v2.6.0
Prat30, v3.2.2
Prat30HighCPUUsageModules, v
Prat30Libraries, v
QuestAnnouncer, v0.5
RatingBuster, v
RecipeBook, v
Recount, v
SatrinaBuffFrame, v3.1
SendSelf, vv2.6.2
SharedMedia, v3.0
SharedMediaBlizzard, v1.0
SharedMediaAdditionalFonts, v1.0
sienasGemViewer, v3.1.3.3
Skinner, vb1.9806.1
SlideBar, v5.5.4293 (WombatII)
Stubby, v5.5.4293 (WombatII)
TalentedLoader, v
TomTom, v216
WeaponRebuff, v3.31
XLoot, v0.9
XLootGroup, v0.5
XLootMaster, v0.8
XLootMonitor, v0.7
XPerl, v3.0.3c
XPerlArcaneBar, v
XPerlParty, v
XPerlPartyPet, v
XPerlPlayer, v
XPerlPlayerBuffs, v
XPerlPlayerPet, v
XPerlRaidAdmin, v
XPerlRaidFrames, v
XPerlRaidHelper, v
XPerlRaidMonitor, v
XPerlRaidPets, v
XPerlTarget, v
XPerlTargetTarget, v
(ck=125a)
Report comment to moderator  
Reply With Quote
Unread 07-19-09, 01:36 PM  
Movarrin
Premium Member
Premium Member

Forum posts: 12
File comments: 74
Uploads: 0
I won't get to the before Tuesday, but I'll try that then and let you know the result.

Thank you.

Update:
That worked. Thank you.
Last edited by Movarrin : 07-20-09 at 05:02 PM.
Report comment to moderator  
Reply With Quote
Unread 07-19-09, 11:35 AM  
Shadowed
...
Featured Addon Author

Forum posts: 387
File comments: 2513
Uploads: 83
type /script GTTP_List = {} and try again
Report comment to moderator  
Reply With Quote
Unread 07-19-09, 08:09 AM  
Movarrin
Premium Member
Premium Member

Forum posts: 12
File comments: 74
Uploads: 0
Whenever I try to turn in the 3 Shadow Vault dailies, Vile Like Fire, Shoot 'Em Up, or Leaving our mark I get this. I've uninstalled and reinstalled just to be sure. This is since the last 2 releases you made. Both have this same problem.


Date: 2009-07-19 10:07:23
ID: 1
Error occured in: Global
Count: 1
Message: ..\AddOns\GetToThePoint\GetToThePoint.lua line 229:
bad argument #1 to 'pairs' (table expected, got boolean)
Debug:
[C]: ?
[C]: pairs()
GetToThePoint\GetToThePoint.lua:229: ?()
GetToThePoint\GetToThePoint.lua:358:
GetToThePoint\GetToThePoint.lua:353
AddOns:
Swatter, v5.5.4293 (WombatII)
ActionBarSaver, v
Aloft, v2.5.2
AloftClassIcon, v1.0.0
AloftCombatText, v1.0.0
AloftCrowdControl, v1.0.0
AloftHealthBarDeficit, v1.0.2
AloftManaBar, v1.0.1
AloftManaData, v1.0.1
AloftManaText, v1.0.2
AloftStackedPointsText, v1.0.0
AloftThreatBar, v1.1.0
AloftThreatData, v1.0.1
AloftThreatText, v1.0.2
AucAdvanced, v5.5.4293 (WombatII)
AucFilterBasic, v5.5.4293 (WombatII)
AucFilterOutlier, v5.5.4293.2531
AucMatchUndercut, v5.5.4293.2531
AucScanData, v5.5.4293 (WombatII)
AucStatClassic, v5.5.4293 (WombatII)
AucStatHistogram, v5.5.4293 (WombatII)
AucStatiLevel, v5.5.4293 (WombatII)
AucStatPurchased, v5.5.4293 (WombatII)
AucStatSales, v5.5.4293.2842
AucStatSimple, v5.5.4293 (WombatII)
AucStatStdDev, v5.5.4293 (WombatII)
AucStatWOWEcon, v5.5.4293.2530
AucUtilAHWindowControl, v5.5.4293.3311
AucUtilAppraiser, v5.5.4293.2530
AucUtilAskPrice, v5.5.4293.3175
AucUtilAutoMagic, v5.5.4293.3142
AucUtilCompactUI, v5.5.4293.2530
AucUtilEasyBuyout, v5.5.4293.3583
AucUtilItemSuggest, v5.5.4293.3108
AucUtilPriceLevel, v5.5.4293.2545
AucUtilScanButton, v5.5.4293.2530
AucUtilScanFinish, v5.5.4293.2530
AucUtilScanProgress, v5.5.4293.2530
AucUtilSearchUI, v5.5.4293.3655
AucUtilSimpleAuction, v5.5.4293.0
AucUtilVendMarkup, v5.5.4293.2530
Auditor2, v4.0
AutoBar, vv3.01.02.23 beta
Babylonian, v5.1.DEV.130
Bartender4, v4.3.3
Broker2FuBar, v1.0
BrokerAllStats, v1.2.3-release
BrokerAloft, v1.0.0
BrokerAuditor, v1.0
BrokerChannelWatch, v2.3
BrokerTalentSwitch, v1.9.6
BrokerWallet, v1.11
ButtonFacade, v3.1.270
ButtonFacadeApathy, v3.1.66
ButtonFacadeCaith, v3.0.50
ButtonFacadeElegance, v3.1.1
ButtonFacadeEntropy, v3.1.49
ButtonFacadeFrozen, v3.0.2
ButtonFacadeGears, v3.1.40
ButtonFacadeItemRack, v2.0
ButtonFacadeLiteFlat, v3.0.2
ButtonFacadeLiteStep, v3.1.41
ButtonFacadeOnyx, v3.1.47
ButtonFacadeSerenity, v3.1.41
ButtonFacadesimpleSquare, v1.2
ButtonFacadeTones, v3.1.0
ButtonFacadeTrinity, v30100.1
Cartographer, v2.0
CartographerBattlegrounds, v2.0
CartographerCoordinates, v2.0
CartographerFoglight, v2.0
CartographerGroupColors, v2.0
CartographerGuildPositions, v2.0
CartographerInstanceMaps, v2.0
CartographerLookNFeel, v2.0
CartographerWaypoints, v2.0
CartographerZoneInfo, v2.0
Chinchilla, vv2.0.7
ClassTimer, v2.2
Configator, v5.1.DEV.130
CraftyGnome, v1.0
CTMailMod, v3.008 (CTMod 3.0)
DBMCore, v
DebugLib, v5.1.DEV.130
DoTimer, v4.3.5
DoubleWide, v
eePanels2, v2.0
EquipCompare, v2.16
FBMergeDatabase, v0.9.6
FBTrackingFrame, v0.9.6d
FishingBuddy, v0.9.6n
FlightMap, v
FreeRefills, v2.0
FriendsWithBenefits, v3.0.9.3
FuBar, v
FuBarAloftFu, v1.0.0
FubarAutoLootFu, v1.0
FuBarBagFu, vv1.1
FuBarCAFu, v
FuBarClockFu, v3.0
FuBarDurabilityFu, v2.11
FuBarFactionsFu, v2.2.1-79
FuBarFarmerFu, v2.0.$Revision: 63418 $
FuBarFishingBuddyFu, v2.2d
FuBarFriendsFu, v2.4.3-102
FuBarFuXPFu, v3
FuBarGarbageFu, v2.0.$Revision: 79607 $
FuBarGroupFu, v1
FuBarGuildFu, v2.4.3-116
FuBarItemRackFu, v1.1
FuBarKungFu, v2.0
FuBarLocationFu, v3.0
FuBarLuckyCharms, v1.8.6
FuBarMailFu, v2.0
FuBarPerformanceFu, v2.0.0
FuBarRecountFu, v3.7
FuBarRestFu, vv1.3.1
FuBarSpeedFu, v2.0.$Revision: 55081 $
FuBarTrackerFu, v2.4 ($Revision: 76255 $)
GetToThePoint, v
IceHUD, v1.5.9 (Revision: 409)
Informant, v5.5.4293 (WombatII)
ItemRack, v
LibBabbleZone30, v
LibSharedMedia30, v3.0-56
LightHeaded, v293
Livestock, v1.1.6
MikScrollingBattleText, v5.4.61
MobInfo2, v3.71
MonkeyBuddy, v
MonkeyLibrary, v
MonkeyQuest, v
MoveAnything, v3.0.2-7
oGlow, v1.12
Omen, v3.0.7
OmniCC, v2.5.5
OpenContainer, v1.0.2
oRA2, v2.0.$Revision: 657 $
Overachiever, v0.44
Possessions, v2.0.2o v5
PowerAuras, v2.6.0
Prat30, v3.2.2
Prat30HighCPUUsageModules, v
Prat30Libraries, v
QuestAnnouncer, v0.5
RatingBuster, v
RecipeBook, v
Recount, v
SatrinaBuffFrame, v3.1
SendSelf, vv2.6.2
SharedMedia, v3.0
SharedMediaBlizzard, v1.0
SharedMediaAdditionalFonts, v1.0
sienasGemViewer, v3.1.3.3
Skinner, vb1.9806.1
SlideBar, v5.5.4293 (WombatII)
Stubby, v5.5.4293 (WombatII)
TalentedLoader, v
TomTom, v216
WeaponRebuff, v3.31
XLoot, v0.9
XLootGroup, v0.5
XLootMaster, v0.8
XLootMonitor, v0.7
XPerl, v3.0.3c
XPerlArcaneBar, v
XPerlParty, v
XPerlPartyPet, v
XPerlPlayer, v
XPerlPlayerBuffs, v
XPerlPlayerPet, v
XPerlRaidAdmin, v
XPerlRaidFrames, v
XPerlRaidHelper, v
XPerlRaidMonitor, v
XPerlRaidPets, v
XPerlTarget, v
XPerlTargetTarget, v
(ck=123f)
Report comment to moderator  
Reply With Quote
Unread 07-14-09, 03:57 PM  
weavil
A Deviate Faerie Dragon

Forum posts: 14
File comments: 95
Uploads: 0
tyty ytmnd
Report comment to moderator  
Reply With Quote
Unread 07-14-09, 02:26 PM  
Shadowed
...
Featured Addon Author

Forum posts: 387
File comments: 2513
Uploads: 83
Ah nevermind see the issue, pushing a fix
Report comment to moderator  
Reply With Quote
Unread 07-14-09, 02:26 PM  
weavil
A Deviate Faerie Dragon

Forum posts: 14
File comments: 95
Uploads: 0
happens on and off for me accepting quests not on GTTP for autoaccept.
Report comment to moderator  
Reply With Quote
Unread 07-14-09, 01:59 PM  
Shadowed
...
Featured Addon Author

Forum posts: 387
File comments: 2513
Uploads: 83
Can't duplicate it, try /script GTTP_List = {}; GTTP_Accept = {}; ReloadUI();
Report comment to moderator  
Reply With Quote
Unread 07-14-09, 01:04 PM  
weavil
A Deviate Faerie Dragon

Forum posts: 14
File comments: 95
Uploads: 0
[15:02:09] Interface\AddOns\GetToThePoint\GetToThePoint.lua:228: bad argument #1 to 'pairs' (table expected, got nil)
(tail call): ?
[C]: ?
[C]: in function `pairs'
Interface\AddOns\GetToThePoint\GetToThePoint.lua:228: in function `?'
Interface\AddOns\GetToThePoint\GetToThePoint.lua:357: in function <Interface\AddOns\GetToThePoint\GetToThePoint.lua:352>
Report comment to moderator  
Reply With Quote
Unread 07-13-09, 05:58 PM  
Acirac
A Defias Bandit

Forum posts: 2
File comments: 56
Uploads: 0
Received this error when I went to turn in todays cooking daily:

[2009/07/13 18:56:07-5607-x1]: GetToThePoint\GetToThePoint.lua:228: bad argument #1 to 'pairs' (table expected, got nil)
GetToThePoint\GetToThePoint.lua:228: in function `?'
GetToThePoint\GetToThePoint.lua:357: in function <Interface\AddOns\GetToThePoint\GetToThePoint.lua:352>

---
Last edited by Acirac : 07-13-09 at 05:58 PM.
Report comment to moderator  
Reply With Quote
Unread 05-20-08, 02:28 PM  
picachu
A Kobold Labourer
 
picachu's Avatar

Forum posts: 0
File comments: 35
Uploads: 0
Somehow the Armor Scraps turnins in AV stop half way through (both on horde and alliance side). I even tried to remove quest from auto turnin and readded the quest, but i still have to manually click the last 2 parts. Everything else works fine.
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.