PDA

View Full Version : Lnet Chat



horibu
06-22-2011, 08:58 PM
Is there anyway to manage how Lnet chat gets outputted to different windows. I'd like to get my private tells sent to say the familiar or voln window while all other chat gets sent to my normal thoughts window. Is this currently possible?

Hazado
06-22-2011, 09:42 PM
;lnet help

horibu
06-22-2011, 09:49 PM
The only option in ;lnet help says something about the familiar window and that sends ALL lnet chat to the familiar window. I want to just send Private lnet convos to the familiar window or another. That way when general Lnet is busy I don't miss my private lnet tells.

Glitch
06-22-2011, 10:11 PM
Far as i know you can only send them all to the thought window. I just highlight [Private] a different color than everything else and it's pretty easy to spot.

Hazado
06-22-2011, 10:15 PM
Open up your lnet.lic and change line 230 to

if @@options['fam_window'] && channel == 'Private' || @@options['fam_window'] && channel == 'PrivateTo'

Then turn on your fam window...only private chat will go to fam window

horibu
06-22-2011, 10:18 PM
You're amazing. Thank you.

horibu
06-22-2011, 10:33 PM
Had to make one adjustment, needed to add the [] brackets and - so it passed the if statement as follows:

if @@options['fam_window'] && channel == '[Private]-' || @@options['fam_window'] && channel == '[PrivateTo]-'

horibu
06-22-2011, 10:53 PM
Changed it a bit more to make it easier and a bit more reduced on it's logic

if @@options['fam_window'] && (channel == '[Private]-' || channel == '[PrivateTo]-')

And you can just add another
|| channel == '[CHANNENAME]-' inside the parenthesis to add any other channel you want to be pushed to your familiar window as well.

horibu
03-01-2013, 10:48 PM
Update.

This code is now located on line 238 for those that are nit pickers as well as bumping this for some friends to see easier.

horibu
11-01-2014, 04:58 PM
BUMP for other friends just getting back to GS4 and others to see.

After the new version of LNET, the code is now located on line 248. So change the entire line of 248 to match:


if @@options['fam_window'] && (channel == '[Private]-' || channel == '[PrivateTo]-')

and if you want to send your custom channels there, scroll up and follow the directions I posted before. Thanks.

Cronstintein
12-04-2014, 10:12 PM
This is an old thread but still awesome. Each iteration of lnet will likely change the line# but if you find the line that starts with "if @@options['fam_window']" and put the line Haz/Horibu has above, it'll still work.

horibu
10-24-2017, 01:26 PM
Update for people that are coming back, it's now located on line 289 of ;lnet



if @@options['fam_window'] && (channel =~ /\[(?:Private|PrivateTo|Onoir|Waggle|enclave|GSWiki)\]/ )


That's mine now that works great, add additional channels accordingly as shown.

horibu
01-01-2018, 12:50 PM
^bump

Super useful feature for those that don't want to miss Private msgs or filter other LNet channels to their Fam window to separate them from all the other chatter of prime/lnet/merchant.

lexbubba
07-31-2018, 06:57 AM
Update for people that are coming back, it's now located on line 289 of ;lnet



if @@options['fam_window'] && (channel =~ /\[(?:Private|PrivateTo|Onoir|Waggle|enclave|GSWiki)\]/ )


That's mine now that works great, add additional channels accordingly as shown.

I must be doing something wrong here. I replaced line 289 in the ;lnet script with exactly the above and it still shows my private messages in the thoughts window (not familar window).

Thanks in advance

horibu
07-31-2018, 01:21 PM
You did enable the familiar window option after updating the code?