diff options
author | flathill <flathill@FreeBSD.org> | 2000-01-05 20:27:21 +0000 |
---|---|---|
committer | flathill <flathill@FreeBSD.org> | 2000-01-05 20:27:21 +0000 |
commit | 4558bf15251d0e86ac48080ca1c5b02845987a52 (patch) | |
tree | f2fb5945cd7887bda1325385e7065abfb186acba /net/lambdamoo/files/README.FreeBSD | |
parent | 89e3b7aa42561782829c03dbe313acce6f571bbf (diff) | |
download | FreeBSD-ports-4558bf15251d0e86ac48080ca1c5b02845987a52.zip FreeBSD-ports-4558bf15251d0e86ac48080ca1c5b02845987a52.tar.gz |
Submitted by: flathill@FreeBSD.org
The most commonly used program to run MOOs
Diffstat (limited to 'net/lambdamoo/files/README.FreeBSD')
-rw-r--r-- | net/lambdamoo/files/README.FreeBSD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/net/lambdamoo/files/README.FreeBSD b/net/lambdamoo/files/README.FreeBSD new file mode 100644 index 0000000..6161e98 --- /dev/null +++ b/net/lambdamoo/files/README.FreeBSD @@ -0,0 +1,27 @@ +How to play LambdaMOO + +1. Get core database, + ftp://ftp.lambda.moo.mud.org/pub/MOO/LambdaMOO-latest.tar.gz. + + If you want to get other two commonly used core databases, visit + http://www.moo.mud.org/. + +2. /usr/local/sbin/moo INITIAL-DB-FILE CHECKPOINT-DB-FILE. + +!NOTICE! + +According to MOO-Cows FAQ in http://www.moo.mud.org/moo-faq/, +LambdaCore-latest.db has password problem on FreeBSD. +Apply following patch to resolve. + +--- LambdaCore-latest.db.orig Sun Jul 4 08:34:16 1999 ++++ LambdaCore-latest.db Sun Jul 4 14:05:25 1999 +@@ -227748,7 +227748,7 @@ + elseif (length(args) != 2) + player:notify(tostr("Usage: ", verb, " <old-password> <new-password>")); + return; +-elseif (player.password != crypt(tostr(args[1]), player.password)) ++elseif (player.password != crypt(tostr(args[1]), player.password[4..5])) + player:notify("That's not your old password."); + return; + elseif (is_clear_property(player, "password")) |