• Warhammer Online Addons
  • Warhammer Online
  • Average Rating:

  • Your Rating

  • Share
  • Report Abuse

RealmStatus

 
Project Updated:
Files Updated: Tue, Aug 18 2009
Supports Game Version: 1.30b
Category: PvP, Combat, and Map & Minimap
Tags:

[Edit Tags]

Project Manager: Aiiane
Additional Authors: No additional authors
Current Version: 1.6
License: MIT License
Development Site: CurseForge.com
Avg Daily DL (last 30 days): 11
Downloads Total: 22,812
Favorites: 47
Comments: 22
  • About RealmStatus
  •  

RealmStatus displays an overview of all 3 pairings' victory point data in a single, easy-to-read window.

If you have LibSlash installed, you can use /rs or /realmstatus to show it.

If you don't have LibSlash installed, use /script RealmStatus.Show() to open it.

  • Downloads (7)
  •  
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  
  RealmStatus 1.6 Release 1.30b 4,560 8/18/2009
  RealmStatus 1.5 Release 1.1.1 10,365 4/17/2009
  RealmStatus 1.4 Release Beta 3.0 2,489 1/24/2009
  RealmStatus 1.3 Release Beta 3.0 4,271 11/26/2008
  RealmStatus 1.2 Release Beta 3.0 168 11/25/2008
  • 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.
  • Talo said

    When you click the default UI VP bar to see the contribution of things like Objectives, Scenarios, PvE, Skirmish, and Prior Tier the realm status window pops up. Is there a way to disable this feature?

    Reply Report Permalink
  • Aiiane said

    Find this line (#707) in RealmStatus.lua and delete it:

    WindowRegisterCoreEventHandler("EA_Window_ZoneControl", "OnLButtonUp", "RealmStatus.ToggleShowing")

    Reply Report Permalink
  • Talo said

    Thank you Aiiane :)

    Reply Report Permalink
  • mayikurd said

    as of patch 1.3 i get this big box on my screen thats unmovable via layout editor that says testing ... 1

    Reply Report Permalink
  • Nemes said

    Please allow windows to be closed by the ESC key.

    It might work if you let the default UI placer do it with WindowUtils.ToggleShowing, WindowUtils.OnShown and WindowUtils.OnHidden.

    Reply Report Permalink
  • Medikto said

    Only found out by accident you can see a log of vp changes by rightclicking on window of Tier 4 witch is a nice feature.
    Is there any way to see other tiers log?

    Reply Report Permalink
  • Aiiane said

    Not currently, no.

    Reply Report Permalink
  • I love using this mod + waaaghbar plugin...allows me to hide the default zone status frame.

    I was curious if you plan to update this add-on once http://www.mmorpg.com/gamelist.cfm/game/239/feature/2647/Zone-Control-Overview-and-Interview.html change is implemented?

    Reply Report Permalink
  • Aiiane said

    Most likely, yes.

    Reply Report Permalink
  • Decay57 said

    I love the newest update except for the flipping of the zone locations which was done so that the Order numbers were on the left. The problem now is that its backwards compared to the HUD campaign tracker.

    Your addon displays Kadrin Valley, TM, then Black Crag when the HUD instead displays Black Crag on the left and Kadrin Valley on the right. Is there any way to flip those zones (in each pairing) while keeping the blue Order numbers on the left? Or maybe you could just let me know what to move around in the LUA and I can do it myself. Thanks.

    Reply Report Permalink
  • Aiiane said

    That may have been an unintentional change; I'll look into it.

    Reply Report Permalink
  • Aiiane said

    Okay, I've checked - that's the order in which they've always been displayed in RealmStatus. The reason for this is that the control bars display Order's blue bar on the left, and Destruction's red bar on the right; and thus the numbers in RealmStatus are displayed in the same orientation. The order of the T4 zones then reflects this. In essence, Mythic is inconsistent in their directions between the current-zone-control bar and the pairing-overview-icons, so whichever direction we choose will conflict with one of those, and in this case we chose to stick with the current-zone-control bar.

    Reply Report Permalink
  • Decay57 said

    Ok, so I figured it out to make it look the same as the HUD :) I just rearranged this stuff...

    local zones = {
    [1] = {
    ["DvG"] = 6,
    ["EvC"] = 106,
    ["HEvDE"] = 206,
    },
    [2] = {
    ["DvG"] = 7,
    ["EvC"] = 107,
    ["HEvDE"] = 207,
    },
    [3] = {
    ["DvG"] = 8,
    ["EvC"] = 108,
    ["HEvDE"] = 208,
    },
    [4] = {
    ["DvG"] = {
    [3] = 9,
    [2] = 5,
    [1] = 3,
    },
    ["EvC"] = {
    [3] = 109,
    [2] = 105,
    [1] = 103,
    },
    ["HEvDE"] = {
    [3] = 209,
    [2] = 205,
    [1] = 203,
    },
    },
    }

    local zoneAbbrev = {
    ["DvG"] = {
    [3] = L"Kadrin Valley",
    [2] = L"Thunder Mt.",
    [1] = L"Black Crag",
    },
    ["EvC"] = {
    [3] = L"Reikland",
    [2] = L"Praag",
    [1] = L"Chaos Wastes",
    },
    ["HEvDE"] = {
    [3] = L"Eataine",
    [2] = L"Dragonwake",
    [1] = L"Caledor",
    },
    }

    I just switched all the 1s and 3s zone abbreviations then changed which zone in the 4th pairing the zone abbreviation was pointing to. Seems to work just fine so far.

    Reply Report Permalink
  • Daede said

    Thanks for posting this, I like it better that way, too. Maybe the author could implement a toggle :)

    Reply Report Permalink
  • Decay57 said

    I meant 1.0 instead of 1.1.

    Reply Report Permalink
  • Decay57 said

    It must have been changed in 1.2 or 1.3. I had been running 1.1 till yesterday and it was displayed the way I mentioned in 1.1 (BC, TM, KV; same as the HUD campaign).

    So what your saying is that theres no way just to make it say Kadrin Valley where it currently says Black Crag and then just move the numbers?

    Reply Report Permalink
  • Godzoox said

    Any help on making the background and borders transparent thanks.

    Reply Report Permalink
  • Prio22 said

    Is it possible to disable the popup updates?

    Reply Report Permalink
  • Aiiane said

    Not currently, no.

    Reply Report Permalink
  • Thorgald said

    Any chance that the tiny popup could be moved? right now i have an invisible window right smack over the menue buttons at the top of the screen...

    Reply Report Permalink
  • Addon Packs Containing RealmStatus

Most Downloads / Day

RealmStatus has not been added to any Addon Packs yet.

  • Similar Addons
  •  

Average downloads per day

  1. 80 State of Realm PvP
  2. 73 Twister Buffs & Debuffs, Action Bars...
  3. 63 Warhammer Scrolling Combat Text Combat
  4. 51 TargetRing PvP, and Unit Frames
  5. 41 Calling Combat, and PvP