Sysop: | Amessyroom |
---|---|
Location: | Fayetteville, NC |
Users: | 26 |
Nodes: | 6 (0 / 6) |
Uptime: | 03:42:31 |
Calls: | 483 |
Calls today: | 1 |
Files: | 1,073 |
Messages: | 98,003 |
Does anyone know if there is a way to display automsg.ans at logon, and
if so which folder does it go into in order for it to work?
Folders I've tried:
wwiv\gfiles
wwiv\menus
wwiv\menus\wwiv\gfiles
Any help is appreciated.
The filename is auto.msg and is usually in wwiv\gfiles.
Hope this helps.
On Friday,March 28, 2025 at 10:07 AM, Patch wrote:
Does anyone know if there is a way to display automsg.ans at
logon, and
if so which folder does it go into in order for it to work?
Folders I've tried:
wwiv\gfiles
wwiv\menus
wwiv\menus\wwiv\gfiles
Any help is appreciated.
The filename is auto.msg and is usually in wwiv\gfiles.
Hope this helps.
-=<(xenos)>=-
♦1
♦2 A .-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
♦3 /*\ | /\liens' /\lcove! WWIV on Linux - Taguig, Metro
Manila, Philippines |
♦4/ v \`-=-=-=-=-=-=-=-=-=-=-=[ WWIVnet Sysops Sub ]=-=--=-=-=-=-=-=-=-=-=-=-'
♦5
♦6
♦7
RE: Re: Automsg ANS
BY: Xenos #1 @60
Xenos that is the auto message text the user types, similar to
laston.txt.
Patch is looking for a header file such as automsgheader.ans to display before the automsg.ans file does OR an ansi to replace the menu of auto message which is not possible.
To add an auto message header, there may be easier ways, but I added it
to /git/wwiv/sdk/filenames.h and included AUTOMSG_NOEXT
#define AUTO_MSG "auto.msg"
#define AUTOMSG_NOEXT "automsg"
#define ASV_NOEXT "asv"
Then in /git/wwiv/bbs/automsg.cpp
}
}
bout.printfile(AUTOMSG_NOEXT); // added header before below
bout.print("\r\n|#9Auto message by: |#2{}|#0\r\n\n", authorName);
auto line_number = 0;
Not sure if it works yet, but it compiles fine.
It would be nice if the lilo process all had header file options:
Last On
Network Traffic
Auto Message
So that custom ANSI files can be made. The aforementioned is how I've
been adding them myself to code but maybe there is an easier way?