From acormany at yahoo.com Sun May 4 17:30:34 2003 From: acormany at yahoo.com (Adam Cormany) Date: Sun May 4 17:30:17 2003 Subject: [Coldstuff] $login_connection.local_echo_off and local_echo_on Message-ID: <20030504233034.90649.qmail@web12807.mail.yahoo.com> I'm using $login_connection.local_echo_off and .local_echo_on during my login process to turn off the echo when people are typing their passwords in. It works great, except on Microsoft's telnet program. I'm not sure why people even want to use that awful excuse for a telnet program, but they do. When .local_echo_off is executed, the user either can't type or can't hit enter to validate the password. Has anyone had this problem? Is there a solution to it other than telling the users not to use Microsofts telnet? Thanks in advance, Adam __________________________________ Do you Yahoo!? The New Yahoo! Search - Faster. Easier. Bingo. http://search.yahoo.com From brandon at roguetrader.com Sun May 18 15:48:59 2003 From: brandon at roguetrader.com (Brandon Gillespie) Date: Sun May 18 14:49:10 2003 Subject: [Coldstuff] cold combat muds? Message-ID: <3EC7F1BB.9080306@roguetrader.com> I am chair for a sci-fi con this weekend (of memorial day), and we are scraping together a computer room with older computer games (because it is older hardware). I have been looking around trying to find a combat mud, which has a completed world (I obviously dont have time to finish one in a few days). Are there any cold muds out there, which are combat centric so somebody could sitdown with no tutoring and just start hacking away, which would also be willing to give me a snapshot for the weekend of the con? Just curious, thanks, -Brandon From acormany at yahoo.com Tue May 20 13:26:48 2003 From: acormany at yahoo.com (Adam Cormany) Date: Tue May 20 13:26:45 2003 Subject: [Coldstuff] $time.format question Message-ID: <20030520192648.82123.qmail@web12801.mail.yahoo.com> Something is going on with my $time.format. When I do: ;$time.format("%HH %MM %SS", 45); I get: "18H 00M 45S" Why is it showing 18 Hours? Is that something that is due to cold or the OS? __________________________________ Do you Yahoo!? The New Yahoo! Search - Faster. Easier. Bingo. http://search.yahoo.com From grimslayde at sbcglobal.net Tue May 20 15:37:55 2003 From: grimslayde at sbcglobal.net (Grimslayde) Date: Tue May 20 13:37:56 2003 Subject: [Coldstuff] $time.format question References: <20030520192648.82123.qmail@web12801.mail.yahoo.com> Message-ID: <000401c31f07$50ee4310$bb0c060a@npd.com> I think that it's OS dependant, but here's what I was using on mine... seems like capital H returns 24 hour format: %A is replaced by national representation of the full weekday name. %a is replaced by national representation of the abbreviated weekday name, where the abbreviation is the first three characters. %B is replaced by national representation of the full month name. %b is replaced by national representation of the abbreviated month name, where the abbreviation is the first three characters. %C is replaced by (year / 100) as decimal number; single digits are preceded by a zero. %c is replaced by national representation of time and date (the format is similar with produced by asctime(3)). %D is equivalent to ``%m/%d/%y''. %d is replaced by the day of the month as a decimal number (01-31). %E* %O* POSIX locale extensions. The sequences %Ec %EC %Ex %EX %Ey %EY %Od %Oe %OH %OI %Om %OM %OS %Ou %OU %OV %Ow %OW %Oy are supposed to provide alternate representations. Additionly %Ef implemented to represent short month name / day or- der of the date, %EF to represent long month name / day order and %OB to represent alternative months names (used standalone, without day mentioned). %e is replaced by the day of month as a decimal number (1-31); single digits are preceded by a blank. %G is replaced by a year as a decimal number with century. This year is the one that contains the greater part of the week (Monday as the first day of the week). %g is replaced by the same year as in ``%G'', but as a decimal number without century (00-99). %H is replaced by the hour (24-hour clock) as a decimal number (00-23). %h the same as %b. %I is replaced by the hour (12-hour clock) as a decimal number (01-12). %j is replaced by the day of the year as a decimal number (001-366). %k is replaced by the hour (24-hour clock) as a decimal number (0-23); single digits are preceded by a blank. %l is replaced by the hour (12-hour clock) as a decimal number (1-12); single digits are preceded by a blank. %M is replaced by the minute as a decimal number (00-59). %m is replaced by the month as a decimal number (01-12). %n is replaced by a newline. %O* the same as %E*. %p is replaced by national representation of either "ante meridiem" or "post meridiem" as appropriate. %R is equivalent to ``%H:%M''. %r is equivalent to ``%I:%M:%S %p''. %S is replaced by the second as a decimal number (00-60). %s is replaced by the number of seconds since the Epoch, UTC (see mktime(3)). %T is equivalent to ``%H:%M:%S''. %t is replaced by a tab. %U is replaced by the week number of the year (Sunday as the first day of the week) as a decimal number (00-53). %u is replaced by the weekday (Monday as the first day of the week) as a decimal number (1-7). %V is replaced by the week number of the year (Monday as the first day of the week) as a decimal number (01-53). If the week containing January 1 has four or more days in the new year, then it is week 1; otherwise it is the last week of the previous year, and the next week is week 1. %v is equivalent to ``%e-%b-%Y''. %W is replaced by the week number of the year (Monday as the first day of the week) as a decimal number (00-53). %w is replaced by the weekday (Sunday as the first day of the week) as a decimal number (0-6). %X is replaced by national representation of the time. %x is replaced by national representation of the date. %Y is replaced by the year with century as a decimal number. %y is replaced by the year without century as a decimal number (00-99). %Z is replaced by the time zone name. %z is replaced by the time zone offset from UTC; a leading plus sign stands for east of UTC, a minus sign for west of UTC, hours and minutes follow with two digits each and no delimiter between them (common form for RFC 822 date headers). ----- Original Message ----- From: "Adam Cormany" To: "Cold" Sent: Tuesday, May 20, 2003 2:26 PM Subject: [Coldstuff] $time.format question > Something is going on with my $time.format. When I do: > > ;$time.format("%HH %MM %SS", 45); > > I get: > > "18H 00M 45S" > > Why is it showing 18 Hours? Is that something that is > due to cold or the OS? > > __________________________________ > Do you Yahoo!? > The New Yahoo! Search - Faster. Easier. Bingo. > http://search.yahoo.com > _______________________________________________ > Cold-Coldstuff mailing list > Cold-Coldstuff@cold.org > http://web.cold.org/mailman/listinfo/cold-coldstuff From acormany at yahoo.com Tue May 20 13:40:30 2003 From: acormany at yahoo.com (Adam Cormany) Date: Tue May 20 13:40:27 2003 Subject: [Coldstuff] $time.format question In-Reply-To: <000401c31f07$50ee4310$bb0c060a@npd.com> Message-ID: <20030520194030.43332.qmail@web12805.mail.yahoo.com> Yeah, I was going by the man page for strftime also, but it should not be returning 18 hours... With: ;$time.format("%HH %MM %SS", 45); It should only return 45 seconds, not 18 hours and 45 seconds. --- Grimslayde wrote: > I think that it's OS dependant, but here's what I > was using on mine... seems > like capital H returns 24 hour format: > > %A is replaced by national representation of > the full weekday name. > > %a is replaced by national representation of > the abbreviated weekday > name, where the abbreviation is the first > three characters. > > %B is replaced by national representation of > the full month name. > > %b is replaced by national representation of > the abbreviated month > name, where the abbreviation is the first > three characters. > > %C is replaced by (year / 100) as decimal > number; single digits are > preceded by a zero. > > %c is replaced by national representation of > time and date (the > format > is similar with produced by asctime(3)). > > %D is equivalent to ``%m/%d/%y''. > > %d is replaced by the day of the month as a > decimal number (01-31). > > %E* %O* > POSIX locale extensions. The sequences > %Ec %EC %Ex %EX %Ey %EY > %Od > %Oe %OH %OI %Om %OM %OS %Ou %OU %OV %Ow > %OW %Oy are supposed to > provide alternate representations. > > Additionly %Ef implemented to represent > short month name / day > or- > der of the date, %EF to represent long > month name / day order and > %OB to represent alternative months names > (used standalone, > without > day mentioned). > > %e is replaced by the day of month as a > decimal number (1-31); > single > > digits are preceded by a blank. > > %G is replaced by a year as a decimal number > with century. This > year > is the one that contains the greater part > of the week (Monday as > the first day of the week). > > %g is replaced by the same year as in > ``%G'', but as a decimal > number > without century (00-99). > %H is replaced by the hour (24-hour clock) > as a decimal number > (00-23). > > %h the same as %b. > > %I is replaced by the hour (12-hour clock) > as a decimal number > (01-12). > > %j is replaced by the day of the year as a > decimal number (001-366). > > %k is replaced by the hour (24-hour clock) > as a decimal number > (0-23); > single digits are preceded by a blank. > > %l is replaced by the hour (12-hour clock) > as a decimal number > (1-12); > single digits are preceded by a blank. > > %M is replaced by the minute as a decimal > number (00-59). > > %m is replaced by the month as a decimal > number (01-12). > > %n is replaced by a newline. > > %O* the same as %E*. > > %p is replaced by national representation of > either "ante meridiem" > or > "post meridiem" as appropriate. > > %R is equivalent to ``%H:%M''. > > %r is equivalent to ``%I:%M:%S %p''. > > %S is replaced by the second as a decimal > number (00-60). > > %s is replaced by the number of seconds > since the Epoch, UTC (see > mktime(3)). > > %T is equivalent to ``%H:%M:%S''. > > %t is replaced by a tab. > > %U is replaced by the week number of the > year (Sunday as the first > day > of the week) as a decimal number (00-53). > > %u is replaced by the weekday (Monday as the > first day of the week) > as > a decimal number (1-7). > > %V is replaced by the week number of the > year (Monday as the first > day > of the week) as a decimal number (01-53). > If the week containing > January 1 has four or more days in the > new year, then it is week > 1; > otherwise it is the last week of the > previous year, and the next > week is week 1. > > %v is equivalent to ``%e-%b-%Y''. > > %W is replaced by the week number of the > year (Monday as the first > day > > of the week) as a decimal number (00-53). > > %w is replaced by the weekday (Sunday as the > first day of the week) > as > a decimal number (0-6). > > %X is replaced by national representation of > the time. > > %x is replaced by national representation of > the date. > > %Y is replaced by the year with century as a > decimal number. > > %y is replaced by the year without century > as a decimal number > (00-99). > > %Z is replaced by the time zone name. > > %z is replaced by the time zone offset from > UTC; a leading plus sign > stands for east of UTC, a minus sign for > west of UTC, hours and > minutes follow with two digits each and > no delimiter between them > (common form for RFC 822 date headers). > > > > ----- Original Message ----- > From: "Adam Cormany" > To: "Cold" > Sent: Tuesday, May 20, 2003 2:26 PM > Subject: [Coldstuff] $time.format question > > > > Something is going on with my $time.format. When I > do: > > > > ;$time.format("%HH %MM %SS", 45); > > > > I get: > > > > "18H 00M 45S" > > > > Why is it showing 18 Hours? Is that something that > is > > due to cold or the OS? > === message truncated === __________________________________ Do you Yahoo!? The New Yahoo! Search - Faster. Easier. Bingo. http://search.yahoo.com From acormany at yahoo.com Fri May 30 15:49:33 2003 From: acormany at yahoo.com (Adam Cormany) Date: Fri May 30 15:49:19 2003 Subject: [Coldstuff] Hex Message-ID: <20030530214933.56997.qmail@web12805.mail.yahoo.com> Are there any functions in Cold currently that can give you the hex of a number and visa versa? Thanks in advance, Adam __________________________________ Do you Yahoo!? Yahoo! Calendar - Free online calendar with sync to Outlook(TM). http://calendar.yahoo.com