Sign in to follow this  
Zekezor

Improved Combat Logger

Recommended Posts

Implement the combat logger in the thread to WO. Thanks.

 

ps. code is public, so go fetch it devs. minimal work involved for combat QoL.

Edited by Zekezor

Share this post


Link to post
Share on other sites

That would be nice.  Having floating tabs would be cool also, so I can see combat log and event log at the same time.

Share this post


Link to post
Share on other sites

+1

 

also can you add floating tabs / floating local list / saving your inventory item placement on logout already?

i mean come on, get this UI fixed please :/

Edited by Quicktor

Share this post


Link to post
Share on other sites

after a while you wouldnt even need to read...the colors would stick to your head

Share this post


Link to post
Share on other sites

It would be exceptionally easy for the Wurm Online developers to achieve this effect. All that is necessary is changing sendCombatNormalMessage() to sendCombatServerMessage() and include the color code you want for each one. Not only is it literally that simple, but in theory it actually improves server performance (very insignificantly, but it does) because it all sendCombatNormalMessage does is... well.. call sendCombatServerMessage with pre-defined color of white...

    public void sendCombatNormalMessage(String message) {
        this.sendCombatNormalMessage(message, 0);
    }

    public void sendCombatNormalMessage(String message, byte messageType) {
        this.sendCombatServerMessage(message, -1, -1, -1, messageType);
    }

If the Wurm Online devs do decide they want this sort of thing, then feel free to use the source code here to track down where the changes need to be made:

 

BetterCombatLog Source (Hastebin)

Share this post


Link to post
Share on other sites

i agree we need different colors for things at minimum, but the ones in that mod seem all too bright for me to enjoy personally

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this