Skip to content

Commit

Permalink
Ncohafmuta 1.4.2 (circa 20 March 2004)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony J. Biacco (Cygnus) committed Jan 8, 2017
1 parent 551504f commit 38d009b
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 22 deletions.
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
##### YOU SHOULD NOT NEED TO EDIT ANYTHING AFTER THIS LINE #####
##########################################################################
# Temp sub-directory that will be made for "make dist" processing
DIST-DIR = ncohafmuta-1.4.1
DIST-DIR = ncohafmuta-1.4.2

# The directory where the exectuable,
# and all other main files/dirs lie
Expand Down
2 changes: 1 addition & 1 deletion config/init_data
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
1900 5 1 1 4 2 3 1 AB
A front_gate BCDE 0 0
A front_gate BCDEF 0 0
B newbie_heaven A 0 0
C meadow * 1 0
D beachhouse A 0 0
Expand Down
5 changes: 5 additions & 0 deletions docs/CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ cut off the recipients (because of the input socket limit imposed)
* need to fix web port so you don't need to put a / after the port number
in the URL to get it to work??

03/20/04 1.4.2
* Fixed glitch in t_who with buffering.
* Try to dynamically make proper width for room column in .who headers
now.

03/15/04 1.4.1
* Fixed glitch with resetting autoforward limits at midnight, where if
a user was online when the reset was done, their limit wouldn't get reset
Expand Down
2 changes: 1 addition & 1 deletion hdrfiles/constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
#ifndef _CONSTANTS_H
#define _CONSTANTS_H

#define VERSION "Ncohafmuta 1.4.1 by Cygnus"
#define VERSION "Ncohafmuta 1.4.2 by Cygnus"
#define UDATA_VERSION "122.ver" /* ONLY CYGNUS CHANGES THIS!! */
/* see README.converting for more info */

Expand Down
5 changes: 5 additions & 0 deletions helpfiles/changes
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ cut off the recipients (because of the input socket limit imposed)
* need to fix web port so you don't need to put a / after the port number
in the URL to get it to work??

03/20/04 1.4.2
* Fixed glitch in t_who with buffering.
* Try to dynamically make proper width for room column in .who headers
now.

03/15/04 1.4.1
* Fixed glitch with resetting autoforward limits at midnight, where if
a user was online when the reset was done, their limit wouldn't get reset
Expand Down
8 changes: 4 additions & 4 deletions helpfiles/topics
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@

------------ ---------- Type .help <topic> for more details!
Last Changed HELP Topic
Last Changed HELP Topic
------------ ----------
Jul 2 13:11 TOP
Jul 1 09:00 changes -> ../docs/CHAN
Mar 18 18:06 changes -> ../docs/CHAN
Sep 21 13:01 credits
Jul 2 2003 TOP
Jun 28 2002 exitmsg
Jun 28 2002 entermsg
Jun 28 2002 entpro
Expand Down Expand Up @@ -177,7 +178,6 @@ Apr 25 2001 close
Apr 25 2001 cls
Apr 25 2001 color
Apr 25 2001 coloruse
Apr 25 2001 credits
Apr 25 2001 creply
Apr 25 2001 delatmos
Apr 25 2001 descroom
Expand Down
10 changes: 1 addition & 9 deletions lib/wizlist
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@

^HG---===^ ^HYWizard^ ^HG===---^

wizone wiztwo

^HG---===^ ^HYManager^ ^HG===---^

managerone managertwo

^HG---===^ ^HYAdmin^ ^HG===---^

adminone admintwo Cygnus
Cygnus

8 changes: 5 additions & 3 deletions srcfiles/server.c
Original file line number Diff line number Diff line change
Expand Up @@ -877,7 +877,7 @@ int s,u,v,min,idl,invis=0,count=0,ranklen=0;
int z=0;
int vi=' ';
int with,num=0;
char ud[100],un[SAYNAME_LEN+5],an[NAME_LEN],und[SAYNAME_LEN*2],rank[50];
char ud[100],un[SAYNAME_LEN+5],an[ROOM_LEN+5],und[SAYNAME_LEN*2],rank[50];
char temp[256];
char check[NAME_LEN+1];
char i_buff[5];
Expand Down Expand Up @@ -953,7 +953,8 @@ write_str(user,"");

/* Give Display format */
if (ustr[user].who==0) { /* OURS */
sprintf(mess,"^LCRoom^ ");
/* sprintf(mess,"^LCRoom^ "); */
sprintf(mess,"%-*s",ROOM_LEN+6,"^LCRoom^");
strcat(mess,"^HGTime^ ");
strcat(mess,"^HRStat^ ");
strcat(mess,"^Idl^ ");
Expand All @@ -965,7 +966,8 @@ if (ustr[user].pbreak) {
else write_str(user,mess);
} /* end of if */
else if (ustr[user].who==2) { /* IFORMS */
sprintf(mess,"^LCRoom^ ");
/* sprintf(mess,"^LCRoom^ "); */
sprintf(mess,"%-*s",ROOM_LEN+7,"^LCRoom^");
strcat(mess,"^HMName^/^HBDescription^ ");
strcat(mess,"^HGTime^-");
strcat(mess,"^HRStat^-");
Expand Down
7 changes: 4 additions & 3 deletions srcfiles/whowww_funcs.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ extern int num_of_users; /* total number of users online */
void external_who(int as)
{
int s,u,vi,min,idl,invis=0;
char ud[100],un[100],an[NAME_LEN],und[200];
char ud[100],un[100],an[ROOM_LEN],und[200];
char temp[256];
char i_buff[5];
time_t tm;
Expand All @@ -44,7 +44,8 @@ strcat(mess,"\n\r");
S_WRITE(as, mess, strlen(mess));

/* Give Display format */
sprintf(mess,"Room Time Stat Idl Name/Description\n");
/* sprintf(mess,"Room Time Stat Idl Name/Description\n"); */
sprintf(mess,"%-*s Time Stat Idl Name/Description\n",ROOM_LEN,"Room");
S_WRITE(as, mess, strlen(mess));

/* display user list */
Expand Down Expand Up @@ -574,7 +575,7 @@ void external_www(int user)
{
int u,min,idl,invis=0;
time_t tm;
char an[NAME_LEN],ud[DESC_LEN+1];
char an[ROOM_LEN],ud[DESC_LEN+1];
char i_buff[5];
char filename[256];
FILE *fp;
Expand Down

0 comments on commit 38d009b

Please sign in to comment.