This has been bugging me too. Currently I've got an IP ban (that's another issue that I thought I had solved....who knows) so I can't test out my theory. Anyway, after taking a gander it seems that this *should* do the trick:
1) Open up your NTSnagit file (in your libs section). Look in the SnagIt() function for this line:
Quote:NTC_SendLogToOOG(NTC_LOG_ITEM, "Kept " + NTC_ItemQualityToMGRColor[_item.quality] + _item.name.split("\n")[0] + ";" + _item.itemdesc);
Change it to:
NTC_SendLogToOOG(NTC_LOG_ITEM, "Kept " + NTC_ItemQualityToMGRColor[_item.quality] + " from " + boss + _item.name.split("\n")[0] + ";" + _item.itemdesc);
2) Open up all the files found in NTBot\bots. You will need to add a single line to all of them.
For example, this is my old NTAndariel file:
Quote:function NTMain()
{
Include("libs/common/NTCommon.ntl");
My new file:
Quote:function NTMain()
{
var boss="Andy";
Include("libs/common/NTCommon.ntl");
Of course the word "Andy" can say whatever you want. That's the text that will appear in your manager. At least that's the theory - I can't verify right now due to IP ban.[COLOR="Silver"]
---------- Post added 08-21-2010 at 02:59 AM ---------- Previous post was 08-20-2010 at 08:35 PM ----------
[/COLOR]I had a chance to test this tonight. It turns out your NTBots\bots file should look like this (this is my Andariel file):
Quote:var boss="Andy";
function NTMain()
{
Include("libs/common/NTCommon.ntl");
Also, this is what the NTSnagIt line should look like:
Quote:NTC_SendLogToOOG(NTC_LOG_ITEM, "Kept " + NTC_ItemQualityToMGRColor[_item.quality] + _item.name.split("\n")[0] + " from " + boss + ";" + _item.itemdesc);
Now my manager says Kept <item> from <boss>. Hope that is clear.