Author Topic: BLID Client for Chat logs?  (Read 1154 times)

Is there anything that is a client or a script that gives the ability to put IDs next to people's names on the chat log while in-game? I've looked it up on daprogs' RTB add-ons, client-sided and server mods. Especially on the forums, which related to nothing of what I wanted to find.

Example:

Quote
Namehere [BLID]: Hello

Is this also made for servers or is it just a client?

saw it on killer trees or whatever so it has to exist somewhere

you could do something hella basic like this

Code: [Select]
package swol_blid
{
function gameConnection::autoAdminCheck(%client)
{
%client.clanPrefix = "\c4[\c6" @ %client.bl_id @ "\c4]" @ %client.clanPrefix;
return parent::autoAdminCheck(%client);
}
};
activatePackage(swol_blid);

a client sided chat logger or a serversided one?

a client sided chat logger or a serversided one?


That's what I was also asking, too. I'm not sure.

you could do something hella basic like this

Code: [Select]
package swol_blid
{
function gameConnection::autoAdminCheck(%client)
{
%client.clanPrefix = "\c4[\c6" @ %client.bl_id @ "\c4]" @ %client.clanPrefix;
return parent::autoAdminCheck(%client);
}
};
activatePackage(swol_blid);

Is this for servers only or for client though, is also my question?

Is this for servers only or for client though, is also my question?

servers

http://forum.blockland.us/index.php?topic=263355.0
this is for clients

Tezuni made sort of a server sided edit further down the page that might be useful for your purposes even though it doesn't log chat.
« Last Edit: September 09, 2015, 05:16:02 PM by log »

servers

Ah, so I feel like I should request a client-sided add-on then. Thanks.

http://forum.blockland.us/index.php?topic=263355.0
this is for clients

You are a blessing. Thank you very much.

Locking this topic since it is solved.