Advertisement

ArenaPointer

  Download the Curse Client

Last Update: April 9, 2008 (2 months ago)
Category: PvP
Tags: ace2 and arena
Project Manager: Nymbia
Current Version: ArenaPointer r66237.9
(for World of Warcraft 2.4.0)
Downloads Today: 72
Downloads Total: 47,471
Favorites: 145
Comments: 15
  • 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 (7)
  •  
Advertisement
  • Screenshots (1)
  •  

You need to login or register to post comments.

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.
 
  • April 11, 2008, 06:47AM (2 months, 3 weeks ago)

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

  • June 1, 2008, 11:47PM (1 month ago)

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

  • Sept. 26, 2007, 02:32PM (9 months, 2 weeks ago)

    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, }

  • Sept. 26, 2007, 12:35PM (9 months, 2 weeks ago)

    @Galvin - Tried this, incorrect rating results are shown.

  • June 1, 2007, 01:09PM (1 year, 1 month ago)

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

  • May 12, 2007, 02:55AM (1 year, 1 month ago)

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

  • May 31, 2007, 09:02PM (1 year, 1 month ago)

    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/

  • May 6, 2007, 02:54PM (1 year, 2 months ago)

    latest version works perfect. try the wow ace updater.

    wowace.com

  • March 20, 2007, 07:53AM (1 year, 3 months ago)

    This mod is always broken :(

  • Feb. 28, 2007, 05:24AM (1 year, 4 months ago)

    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.

  • Sept. 26, 2007, 09:06AM (9 months, 2 weeks ago)

    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
    
  • Feb. 28, 2007, 03:15AM (1 year, 4 months ago)

    "requires ace 2.0 event"

  • Feb. 27, 2007, 08:36PM (1 year, 4 months ago)

    SuperInspect 2.0-10

    Thanks !!!

  • Feb. 27, 2007, 05:32PM (1 year, 4 months ago)

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

  • Feb. 27, 2007, 04:56PM (1 year, 4 months ago)

    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
    
 
  • Similar Addons
  •  
  1. 4,630 Atlasloot Enhanced PvP, Map, Tradeskill, and ...
  2. 3,608 Preform AV Enabler PvP
  3. 2,022 Natur EnemyCastBar PvP, Buffs & Debuffs, Raids & ...
  4. 1,578 Carbonite Quest Chat & Communication, PvP, ...
  5. 480 Titan Panel ... PvP
Advertisement