Get an Epic Experience with Premium

WarBoard

Miscellaneous Login to Add Favorites
  • 0 Likes
  • Warhammer Online
  • 60 Monthly Downloads
  • Supports: 1.3.6
  • 59,478 Total Downloads
  • Updated 07/28/2010
  • Created 11/02/2008
  • 214 Favorites
  • Project Site
  • Comments
  • Release Type: Release
  • License: All Rights Reserved
  • Newest File: 0.5.9.6
or
Support development! **
Donate

About WarBoard

WarBoard is a highly customizable, bar type addon which you can add other mods to. You can have either a top or bottom bar or both. Included in this package are a money window, experience point window, renown window, guild window, and an influence window. There is a button on each end of the bar which is hidden until you mouse over it. One starts Layout Mode and one opens the Options Window. You can disable these buttons in WarBoard Options and use /warboard to open the options window (Libslash can be optionally installed!).

Layout Editing Mode

The left button initiates WarBoard's Layout Editing mode. If you have disabled the corner buttons, there is a button in the options window to toggle layout mode. In this mode clicking an arrow moves the mod in that direction. If you have more than one row, right clicking will bring up a context menu with options to move the mod up or down. If you have both top and bottom boards enabled, this context menu includes the option to move the mod to the other board.

Options Window

The right button opens the WarBoard Options window. Here you can change the color and transparency of WarBoard's background and the background of the mods. You can also change the spacing between mods and rows, change the alignment from center to left or right for each row, and toggle WarBoard's layout mode. You may also enable and disable top and bottom boards. New mods will be added to the board that is set as default.

Mods

WarBoard_XP

Has an experience point bar and now shows your current rank and xp percentage to next level. The tool tip shows xp needed, earned, amount to level, and rested. Clicking opens the character window.

WarBoard_RR

Has a renown point bar and shows your current renown rank and percentage to next rank. The tool tip shows renown needed and earned.

WarBoard_Coin

Shows your current money and a status bar shows your bag space. The bar's background turns from green to red when you have fewer than 10 open bag slots. If your bags are full, a red border is displayed around the bar. The tool tip shows total bag slots, filled slots, open slots and number of quest items. Clicking opens your backpack.

WarBoard_GP

Has a guild xp bar and shows current guild rank and percentage to next level. Tool tip shows guild name, xp earned, total needed and amount left to level. Clicking opens the guild window.

WarBoard_Inf

Has an influence bar and shows the current pairing and chapter. The diamonds on the bar change when a reward is available. Tooltip shows the amount influence needed for each reward level. It now disables the default bar. Clicking opens the appropriate tome page.

WarBoard_Clock

A customizable time AddOn with a custom GUI window. Within it you can choose the current time string format (Hours/Minutes/Seconds), 24/12 hours/cycle and AM/PM format, and string color. The GUI is accessed through clicking the Clock.

WarBoard_Social

A pack of 3 WarBoard Social mods: Alliance, Guild, Friends. With these mods, you can easily see how many friends, guildsmen or people in the alliance are online, by just hovering over the module bar.

Notes

  • This is a beta version. Please let me know of any bugs or problems you encounter.
  • Suggestions for improvement are welcomed.
  • There is a commented mod template here

Code Credits

  • Thanks to Obes_au for most of the bag related code.
  • Thanks to Felyza for code to make the guild bar look right.
  • Thanks to Tafka for helping out with the guild mod and xp mod.
  • I took some code for the influence mod from Oscarr's WaaaghBar_Influence for my influence mod. Sorry for not mentioning it sooner Oscarr.
  • I took some code from Shakakaw's WaaaghBar_Money for my money mod.
  • Thanks to Ramshackles for the Clock mod.
  • Thanks to Snotrocketwar for the work he's done on WarBoard and its plugins until GattsuVG.
  • Thanks to GattsuVG for the work he's done on WarBoard and its plugins until me.
  • Thanks to Lythaniel for the Alliance Plugin, and fixes on Coin and Inf plugins.
  • Thanks to Garkin for the Slash commands issue.

------------------------------------------------------------------------
r37 | computerpunk | 2010-07-28 14:03:11 +0000 (Wed, 28 Jul 2010) | 1 line
Changed paths:
   A /tags/0.5.9.6 (from /trunk:36)

*Tagging.
------------------------------------------------------------------------
r36 | computerpunk | 2010-07-28 14:02:56 +0000 (Wed, 28 Jul 2010) | 1 line
Changed paths:
   M /trunk/WarBoard_Alliance/WarBoard_Alliance.lua

*Probable fix for WarBoard_Alliance.
------------------------------------------------------------------------

Comments

First Previous Page 1 of 23 Next Last
  • #343
    here is the fix for the Renown lvl cap window

    go to and edit... Interface\AddOns\WarBoard\WarBoard_RR\WarBoard_RR.lua

    change this...
    function WarBoard_RR.OnPlayerRpUpdate()
    if GameData.Player.Renown.curRank
    local RpEarned = GameData.Player.Renown.curRenownEarned
    local RpNeeded = GameData.Player.Renown.curRenownNeeded
    local RpPercent = RpEarned / RpNeeded * 80
    local curRR = GameData.Player.Renown.curRank
    LabelSetText("WarBoard_RRName", towstring(format("RR: %s", tostring(curRR))))
    LabelSetText("WarBoard_RRStat", towstring(format("%.2f%%", RpPercent)))
    LabelSetText("WarBoard_RRTitle", L"")
    LabelSetText("WarBoard_RRTitle2", L"")

    StatusBarSetCurrentValue("WarBoard_RRPercentBar", RpEarned)
    StatusBarSetMaximumValue("WarBoard_RRPercentBar", RpNeeded)
    else
    -- We've reached the maximum level.
    LabelSetText("WarBoard_RRTitle", L"Renown Rank")
    LabelSetText("WarBoard_RRTitle2", L"80")
    LabelSetText("WarBoard_RRName", L"")
    LabelSetText("WarBoard_RRStat", L"")
    LabelSetTextColor("WarBoard_RRTitle", 200, 500, 200)
    WindowSetAlpha("WarBoard_RRBarBackground", 0)
    end
    end


    to this...
    function WarBoard_RR.OnPlayerRpUpdate()
    if GameData.Player.Renown.curRank
    local RpEarned = GameData.Player.Renown.curRenownEarned
    local RpNeeded = GameData.Player.Renown.curRenownNeeded
    local RpPercent = RpEarned / RpNeeded * 100
    local curRR = GameData.Player.Renown.curRank
    LabelSetText("WarBoard_RRName", towstring(format("RR: %s", tostring(curRR))))
    LabelSetText("WarBoard_RRStat", towstring(format("%.2f%%", RpPercent)))
    LabelSetText("WarBoard_RRTitle", L"")
    LabelSetText("WarBoard_RRTitle2", L"")

    StatusBarSetCurrentValue("WarBoard_RRPercentBar", RpEarned)
    StatusBarSetMaximumValue("WarBoard_RRPercentBar", RpNeeded)
    else
    -- We've reached the maximum level.
    LabelSetText("WarBoard_RRTitle", L"Renown Rank")
    LabelSetText("WarBoard_RRTitle2", L"100")
    LabelSetText("WarBoard_RRName", L"")
    LabelSetText("WarBoard_RRStat", L"")
    LabelSetTextColor("WarBoard_RRTitle", 200, 500, 200)
    WindowSetAlpha("WarBoard_RRBarBackground", 0)
    end
    end

    Or just replace all "80" for "100" :-)
  • #344
    Thank you so much for this!
  • #342
    I think I have figured out how to get the "stacked on the left, white background" problem fixed. When the game is not running, go into your warboard settings for the character (\user\settings\SERVERNAME\CHARNAME\CHARNAME\WarBoard\SavedVariables.xml in the game folder) and find a section in the that file which looks like this:

    ModRows =
    {
    },

    Modify this section of the file to look like this:

    ModRows =
    {
    [1] =
    {
    },
    },

    Boot up the game and load that character. Warboard should look normal again.

    I've done this for 2 chars so far and it's fixed it for both of them.
  • #337
    I found a solution to "pushed to the left side" problem...
    1. Turn off all warboard_mods. Leave warboard on.
    2. In warboard options (/warboard) set Bottom bar to be default.
    3. Enable all warboard_mods.

    Now they`ll show properly on the bottom bar. It`s some kind of solution but it`s not exacly what i wanted. Somethings wrong with the top bar.
    I Hope it can be fixed.

    Keep the great work computerpunk ;]
  • #338
    I don`t get it... i did it once and tried to do it second time... First time i was successful. Second i failed... It`s getting wierd... Now addon places every mod in top bar :(
  • #329
    Everything is pushed to the left side of the board. Only one display showing, solid white background. I've deleted the addon/saved variables and reinstalled.

    pic: http://oi54.tinypic.com/16h85lh.jpg
  • #334
    I have the same problem but nothing works ;/ reloading/deleting etc. :
  • #333
    I have the same issue, is there any fix? Tried /reloadui already. Tried removing settings (through curse client) and no go. When I look at the mods window where you can enable/disable mods WarBoard is yellow and says it loaded but with an error. I don't know how to see the error though.
  • #331
    I have that when i load a new UI-profile. But usualy /rel solves that.
  • #332
    Gone through all the reloading/logging/enabling a single display. Always appears that way. It's fine on my other toons.
  • #327
    Concerns patch 1.4:

    Actually have the problem that I can't move Elements to the BottomBoard (Move to BottomBoard does nothing). Also the BottomBoard can't be deactivated via configuration-window.
  • #324
    I've been trying out 1.4, and I'm noticing that WarBoard_RR needs updating to account for the RR80-100 range. The mouseover display shows the correct rank, but the in-board display still caps out at 80.

    Just thought I'd mention it.
  • #326
    Fixed. Waiting for info on Coins.
  • #336
    WarBoard_Coin not showing numbers over coins.

    WarBoard_RR is fixed in the latest alpha.

    Seems I have to activate a trial account to test these.
  • #339
    Any idea when the RR fix will get implemented? Or let us know how to fix it ourselves? Seems to be the only issue I am having after the 1.4 patch. Thanks.
  • To post a comment, please login or register a new account.
Login to Curse

Don't have an account? Create One.

Get an epic experience with Curse Premium
  • Faster addon downloads
  • Premium-Only Beta Giveaways
  • Ad-Free Curse experience
  • Premium Curse Client
  • and many More Features
  • Learn More »

Maingear

ENTER NOW