Author Topic: Chat Customizer (Beta v5, nearly ready for the Add-Ons section)  (Read 11635 times)

Pretty sure I've seen this floating around somewhere, but I don't know if it conflicts.
If anyone can find it, let me know so I can double-check.

http://forum.returntoblockland.com/dlm/viewFile.php?id=3435

easier said than done.

Code: [Select]
package add_time
{
function newChatSO::addLine( %this, %line )
{
%time = getWord( getDateTime(), 1 );
%prefix = "<spush>\c7[" @ %time @ "] <spop>";

parent::addLine( %this, %prefix @ %line );
}
};

activatePackage( "add_time" );


http://forum.returntoblockland.com/dlm/viewFile.php?id=3435
Chrono gave up on it, it has bugs.


Such as overwriting Iban's Health bar, and breaking things in normal chat.

v4 was just released, see the OP.

Just put out v5; sorry if it came a little quickly lol. (see OP)

Throw feature requests at me because v6 should be the final beta.

The ability to move chat to another area of the screen?
And maybe seperate deaths from chat considering as far as I know chrono gave up on the addon that does that.

Can't really think of anything else, unless its possible to make all of chat transparent.

Add an option for regular time instead of army time.
Code: [Select]
function getTime()
{
%hour = getSubStr(getWord(getDateTime(), 1), 0, strPos(getWord(getDateTime(), 1), ":"));
%minute = getSubStr(getWord(getDateTime(), 1), 3, 2);

if(%hour >= 12 && %hour != 24)
{
if(%hour >= 13)
{
%hour -= 12;
}

%word = "PM";
}

else
{
%word = "AM";
}

return %hour @ ":" @ %minute SPC %word;
}

Add an option for regular time instead of army time.
Code: [Select]
function getTime()
{
%hour = getSubStr(getWord(getDateTime(), 1), 0, strPos(getWord(getDateTime(), 1), ":"));
%minute = getSubStr(getWord(getDateTime(), 1), 3, 2);

if(%hour >= 12 && %hour != 24)
{
if(%hour >= 13)
{
%hour -= 12;
}

%word = "PM";
}

else
{
%word = "AM";
}

return %hour @ ":" @ %minute SPC %word;
}
This please.


And and a little side request can you add a ingame clock for people that play in fullscreen or will that be going too far from chat customization?

Add an option for regular time instead of army time.
-snip-

You didn't have to do the code there, I'm not dumb lol.
And and a little side request can you add a ingame clock for people that play in fullscreen or will that be going too far from chat customization?
No because this is a chat modification. Just turn on the Display Time option.

Alright, time to be stupid.
How does one open the Menu?
I can't find the key binding to it, I also can't see anyone else mentioning anything

Alright, time to be stupid.
How does one open the Menu?
I can't find the key binding to it, I also can't see anyone else mentioning anything
Options>Graphics>Chat Settings

looks pretty interesting

What is the GUI theme or whatever?