Reset Password
Existing players used to logging in with their character name and moo password must signup for a website account.
- SacredWest 18m
- HuginnMuninn 1m
- PinkFox 52s
- Burgerwolf 1s PRETZELS
a Neon 15m
- JMo 2s Nothin' to see here.
- TyHue 3m
- FunkyMango 1m
- Aye 9s
- Baphomei 1s
- SilverMoon 1m
- SoftAndWet 51m
- RedProtokoll 2m
- Coris5271 11s
- Majere_Draven 3m
- Fogchild1 1m
- PsycoticCone 17m
- Napoleon 2h PORN PUPPETS
- zeezenfrozen 8s mood: https://youtu.be/Hed0GAtoXk4
- BelladonnaRP 2m
- adrognik 3m
a Mench 3h Doing a bit of everything.
And 24 more hiding and/or disguised
Connect to Sindome @ moo.sindome.org:5555 or just Play Now

LambdaMOO-Builder
is a MOO client for developers!

I just wanted to show off a nifty java app I've stumbled across.  My favorite features are its built in object browser and code editor. http://www.lambdamoo.de/

The screen shot says it all!
http://www.lambdamoo.de/lmb_huge.html

That is awesome. A really nice tool. Finally I can mess around with the minimalDB and add only the things I need to it.

By the way, if anyone wants to implement ascii without having to install ascii package.

Two ways to do it (both envovle recompiling lambda moo code)

1) Make a fb_chr function, that takes number and returns a character represenation.

i.e. list.c

static package
bf_char(Var arglist, Byte next, void *vdata, Objid progr)
{
   static char ascii_char[] = "?";
   Var r;
   if(arglist.v.list[1].type != TYPE_INT) return make_error_pack(E_TYPE);
   ascii_char[0] = (char)arglist.v.list[1].v.num;

   r.type  = TYPE_STR;
   r.v.str = ascii_char;

   free_var(arglist);
   return make_var_pack(r);
}


2) Modify notify method to parse the line and replace the chracter combination with ASCII control codes.

i.e. ^r  becomes "ESC[31m" etc, etc.

I can't play MOOs without color.