Existing players used to logging in with their character name and moo password must signup for a website account.
- Slyter 52s
- Burgerwolf 1m PANCAKES
- Veleth 25s
- cata 2m
- Dale 7m
- xXShadowSlayerXx 35s
- BubbleKangaroo 3m
- spungkbubble 11s
- JanekSembilan 26m
- meero619 1s
- SmokePotion 12s Right or wrong, I'm getting high.
- Rillem 22s Make it personal.
- LadyLogic 11m
- Vanashis 4h
- Sivartas 11m
- zxq 42s Blackcastle was no ordinary prison.
- NightHollow 7m
And 28 more hiding and/or disguised
Connect to Sindome @ moo.sindome.org:5555 or just Play Now

99 Bottles of Beer on the Wall
Johnny did it, now you gotta suffer through it

Johnny whiped up this in a few minuts:

uses $npc_centric_script
// For more information, see 'help scripting'.
set "%bottles" 99

label "top"
if equals %bottles 0
 stop
endif
start "verse"
pause 5 "minutes"
jump "top"

label "verse"
 say %bottles " bottles of beer on the wall …"
 say %bottles " bottles of beer!"
 say "Yaaah take one down, pass it around!"
 decrement "%bottles"
 if equals %bottles 1
   say %bottles " bottle of beer on the wall!"
 elseif equals %bottles 0
   say "No more bottles of beer on ... the ... wall."
   social "sigh"
 else
   say %bottles " bottles of beer on the wall!"
 endif
finish

And then he went on to do a more complex version:

uses $npc_centric_script
// For more information, see 'help scripting'.
set "%bottles" 99

label "top"
if equals %bottles 0
 stop
endif
start "verse"
pause 1 "minute"
jump "top"

label "verse"
 start "verse_a"
 start "verse_b"
 start "verse_c"
 decrement "%bottles"
 if equals %bottles 1
   say %bottles " bottle of beer on the wall!"
 elseif equals %bottles 0
   say "No more bottles of beer on … the ... wall."
   social "sigh"
 else
   say %bottles " bottles of beer on the wall!"
 endif
finish

label "verse_a"
 random "type" 4
 if equals %type 4
   say "Weeee .... got " %bottles " bottles of beeeer on the wall!"
 elseif equals %type 3
   say %bottles " bottles of beer on the wall ..."
 elseif equals %type 2
   do %npc ".drop to my knees and .sing out, \"" %bottles " bottles of beeeer on the wallllll!\""
 else
   say "Ooooh, theres " %bottles " bottles of beer on the wall!"
 endif
finish

label "verse_b"
 random "type" 4
 if equals %type 4
   say %bottles " bottles of beeeeer!"
 elseif equals %type 3
   say "Oh- " %bottles " bottles of beer!"
 elseif equals %type 2
   say %bottles " bottles of beer!"
 else
   say "Yeah, " %bottles " bottles of beer!"
 endif
finish

label "verse_c"
 random "type" 4
 if equals %type 4
   say "Yaaah take one down, pass it around!"
 elseif equals %type 3
   say "Yaaah twist the cap off, slam one down!"
 elseif equals %type 2
   say "Pour me a round, I'll drink it right down!"
 else
   say "Pass it around and drink it all down!"
 endif
finish

I emailed it to this guy:

http://www.noodleroni.com/beercontest.php

And let him know that while it's not freely avalible, it definately has got to rank among the most obscure.

-Kevlar