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

  • Your Rating

  • Share
  • Report Abuse

ArenaPointer

  Download the Curse Client

Project Updated:
Files Updated: Wed, Mar 26 2008
Supports Game Version: 2.4.3
Category: PvP
Tags:

, and [Edit Tags]

Project Manager: Nymbia
Additional Authors: No additional authors
Current Version: 66237
License: All Rights Reserved
Avg Daily DL (last 30 days): 70
Downloads Total: 96,998
Favorites: 186
Comments: 13
  • About ArenaPointer
  •  

ArenaPointer is a tiny Ace2 addon that adds a display to your arena teams sheet with your weekly point gain from that team.

  • Downloads (6)
  •  
File Name Release Type Game Version Downloads Date
Addon Curse.com Beta 2.3.3 0 9/29/2008
  File Name Release Type Game Version Downloads Date  
  ArenaPointer 66237 Release 2.4.3 44,524 8/11/2008
  ArenaPointer-r66237 Beta 2.4.3 96 3/26/2008
  ArenaPointer-r54888 Beta 2.3.3 74 11/15/2007
  ArenaPointer 51954 Release 2.2.3 85 10/23/2007
  ArenaPointer-r51954 Beta 2.2.3 85 10/14/2007
Advertisement
  • Screenshots (1)
  •  
  • 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.
  • DarkXale said 

    Simple and takes no resources. Shame blizzard didn't do this themselves really :)

    Reply Report Permalink
  • Post Date: 2007/05/22 @cursegaming Post Date: 2007/05/29 @wowace.com where this addon resides.

    Reply Report Permalink
  • Sh4rk said 

    this addon don't use the new formula for arena calculation, my choice go to Sharena that seems better. http://wow-en.curse-gaming.com/downloads/details/7150/

    Reply Report Permalink
  • splasm said 

    Seems like the 2v2 is calculating at a 75% coefficient, but it should be 70%.

    Reply Report Permalink
  • schr0nz said 

    latest version works perfect. try the wow ace updater.

    wowace.com

    Reply Report Permalink
  • Zexi said 

    This mod is always broken :(

    Reply Report Permalink
  • lalla521 said 

    the code is correct, you just need to modify this also


    local ratios = { [2] = 0.7, [3] = 0.8, [5] = 1, }


    into this

    local ratios = { [2] = 0.76, [3] = 0.88, [5] = 1, }

    Reply Report Permalink
  • @Galvin - Tried this, incorrect rating results are shown.

    Reply Report Permalink
  • Galvin said 

    Blizzard did more than just change the penalty the formulas were changed as well. I tested this against blizzard calculator. Works fine for greater than 1500 rating. If its not calculating correctly for 1500 or lower rating let me know.

    Find the old code in arenapointer.lua

     function getpoints(rating, teamsize) local points if rating > 1500 then points = 1426.79 / (1 + 918.836 * math.exp(-0.00386405 * rating)) else points = 0.38 * rating - 194 end return math.floor(0.5 + points * ratios[teamsize]) end 

    [ Then replace with the new code:

     function getpoints(rating, teamsize) local points if rating > 1500 then points = 1511.26 / (1 + 1639.28 * 2.71828 ^ (-0.00412 * rating)); return math.floor(points * ratios[teamsize]); else points = 0.22 * rating + 14; return math.floor(0.5 + points * ratios[teamsize]); end end 

    Reply Report Permalink
  • Date: 2007-02-28 10:21:29 ID: 51 Error occured in: Global Count: 1 Message: ..\AddOns\ArenaPointer\ArenaPointer.lua line 34:

     AceHook-2.1: Attempt to hook a non-existant function "InspectPVPTeam_Update" 

    Debug:

     +Wowhead_Looter\Wowhead_Looter.lua:2575: +Wowhead_Looter\Wowhead_Looter.lua:2568 ...dOns\ArenaPointer\libs\AceAddon-2.0\AceAddon-2.0.lua:25: ...dOns\ArenaPointer\libs\AceAddon-2.0\AceAddon-2.0.lua:23 ...dOns\ArenaPointer\libs\AceAddon-2.0\AceAddon-2.0.lua:698: ...dOns\ArenaPointer\libs\AceAddon-2.0\AceAddon-2.0.lua:675 [C]: ? ...\AddOns\mDarkPact\Libs\AceEvent-2.0\AceEvent-2.0.lua:251: TriggerEvent() ...\AddOns\mDarkPact\Libs\AceEvent-2.0\AceEvent-2.0.lua:962: ...\AddOns\mDarkPact\Libs\AceEvent-2.0\AceEvent-2.0.lua:955 

    AddOns:

     agUnitFrames, v05-01-07 AlphaMap, v2.90.20003 ArenaPointer, v0.1 Atlas, v1.9b1 AtlasLoot, vAtlasLoot Enhanced v2.04.00 Bartender3, v3.0.24682 ClearFont, vv20000-Beta 1 ClosetGnomeMount, v1 ClosetGnomeOhNoes, v1 ClosetGnome, v1 cyCircled, v0.2 FlightMap, v2.0-3 ElkBuffBar, v1.3 EQCompare, v1.4 FuBarModMenuTuFu, v2.0 FuBarMoneyFu, v20000-1 FuBarWarlockTimerFu, v1.0 FuBar, v24665 FuTextures, v2.0 GMail, v1.1 ImprovedCamera, v2.0.1 mDarkPact, v0.1.8 MobHealth, v3.2 MoveAnything Necrosis, v2.0 OneBag, v2.0.23716 Prat, v2.0 Beta 1 24712 RatingBuster, v0.8.6 sct, v5.3 SimpleCombatLog, v1.0.24410 Skinner, v2.1 Squeenix Stubby, v1508 SuperInspect, v2.1-beta-20 SuperInspectUI SWFixLogStrings, v2.0 SWStats, v2.0.2 Swatter, v3.9.0.1372 LootLink, v350 QuickLoot TheoryCraft2, vBeta v.0013 TinyTip TinyTipExtras WowheadLooter, v2.0.8 

    Edit1: Just noticed the comment below, I'll try logging in with SuperInspect Disabled.

    Edit2: It still comes up when I log in.

    Reply Report Permalink
  • Zexi said 

    "requires ace 2.0 event"

    Reply Report Permalink
  • Alauchoa said 

    SuperInspect 2.0-10

    Thanks !!!

    Reply Report Permalink
  • Nymbia said 

    Likely an incompatibility with superinspect, mind linking the version you use?

    Reply Report Permalink
  • Mion said 

    Well isnt ArenaPointer but still a nice addon for profession such as alchemy :p. Manufac.

    Reply Report Permalink
  • Whats the deal I downloaded what I thought was Arenapointer but the file says it Manufac. Is this arenapointer or not?

    Reply Report Permalink
  • Alauchoa said 

    Im getting an error log:

    Date: 2007-02-27 19:00:43 ID: 51 Error occured in: Global Count: 1 Message: ..\AddOns\ArenaPointer\ArenaPointer.lua line 34:

     AceHook-2.1: Attempt to hook a non-existant function "InspectPVPTeam_Update" 

    Debug:

     ...face\AddOns\FuBar\libs\AceAddon-2.0\AceAddon-2.0.lua:25: ...face\AddOns\FuBar\libs\AceAddon-2.0\AceAddon-2.0.lua:23 ...face\AddOns\FuBar\libs\AceAddon-2.0\AceAddon-2.0.lua:698: ...face\AddOns\FuBar\libs\AceAddon-2.0\AceAddon-2.0.lua:675 [C]: ? Ace2\AceEvent-2.0\AceEvent-2.0.lua:251: TriggerEvent() Ace2\AceEvent-2.0\AceEvent-2.0.lua:962: Ace2\AceEvent-2.0\AceEvent-2.0.lua:955 

    AddOns:

     Accountant Ace2 AchatPoison AlphaMap, v2.90.20003 Antagonist, v28142 ArenaMaster, v0.98 ArenaPointer, v0.1 Atlas, v1.9b1 AtlasAuchindoun, v1.8.6 AtlasBattlegrounds, v1.8.6 AtlasCoT, v1.8.6 AtlasDungeonLocs, v1.8.6 AtlasExtras, v1.8.6 AtlasFlightPaths, v1.8.6 AtlasLoot, vAtlasLoot Enhanced v2.04.00 AtlasLootFu, v1.1 AtlasMajorCities, vv1.1.0 AtlasOutdoorRaids, v1.8.6 AtlasOutlandsMaps, vv1.8.6b5 AtlasQuest, vAtlasQuest Version: 3.20.55 AtlasTempestKeep, v1.8.6 Auctioneer, v3.9.0.1526 AVbars2, v2.0.6 BonusScanner, vv2.1 BuyPoisons, v2.10 - By Sneekygit ChatScroll CritAlert, v2.1.0.20003 CTMailMod, v1.5 (CTMod 2.0) CTRABossMods, v1.3 (CTMod 2) CTRaidAssist, v1.6 (CTMod 2.0) DamageMeters, v5.6.0 Enchantrix, v3.9.0.1510 EnhancedFlightMap, v2.0b10 EnhTooltip, v3.9.0.1516 EquipCompare, v2.9.9 FactionGrinder, v1.5.0 FishingBuddy, v0.9g FBOutfitDisplayFrame, v0.9 FBTrackingFrame, v0.9 FuBarAuditorFu, v2.0.3 FuBarCustomMenuFu, v1 FuBarExperienceFu, v1.1 $Revision: 24535 $ FuBarFactionsFu, v2.2 FubarFishingBuddyFu, v2.2 FuBarFriendsFu, v2.2.1 FuBarFuXPFu, v3 FuBarGreedBeacon FuBarGuildFu, v2.2 FuBarItemBonusesFu, v2.1 FuBarMailFu, v2.0 FuBarMoneyFu, v20000-1 FuBarNameToggleFu, v2.0 FuBarPetInFu, v2.0 FuBarQuestsFu, v2.0 FuBarRecZone, v2.0.$Revision: 26541 $ FuBarRogueTimerFu, v1.5 FuBarSkillsPlusFu, v2.2.8 $Revision: 26541 $ FuBarWindFuryFu, v2.2rc1 $Rev: 27748 $ FuBar, v25921 FuTextures, v2.0 G15Buttons Gatherer, v2.99.0.0493 GrinderCore, v1.3.0 Informant, v3.9.0.1397 ItemDataCache, v1.07 ItemSync, vr25808 KLHThreatMeter, v19.9 MapLibrary, v1.1.5 MapNotesIcons, v1.00.20003 MapNotes, v3.40.20003 MaterialsTracker, v20003.01 MobHealth, v3.2 MobInfo2, v3.24 mutebutton MutilateCrit Nauticus, v2.0.0 AHShowBid, v20000 R.1 PoisonPouch, v1.2.1 QuestAreas, v0.5.1 QuickRepair, v1.2 QuickMountEquip ReagentData, v2.4.4 ReagentInfo, v2.0.91 Recap, v3.605 RecipeRadar, v1.19 RecipeKnown, v0.109.20003 sct, v5.4 sctd, v2.3 simpleMinimap, v20003-4 Stubby, v1508 SuperInspect, v2.1-beta-20 SuperInspectUI Swatter, v3.9.0.1372 VArenaHelp, vb 1.2 WOWEconPriceMod EngBags, v2.0.4-2 

    Reply Report Permalink
  • 1 page(s)
  • Similar Addons
  •  

Average downloads per day

  1. 19,747 Atlasloot Enhanced PvP, Map & Minimap, Professions...
  2. 5,802 Decursive PvP, Buffs & Debuffs, and...
  3. 5,636 MikScrollingBattleText PvP, and Combat
  4. 1,571 Gladius PvP, Unit Frames, Combat,...
  5. 1,041 WinterTime PvP, Guild, and Battleground