MOO-cows Mailing List Archive
[Prev][Next][Index][Thread]
Server panics at Lambda
-
Date: Mon, 16 Sep 1996 07:07:49 PDT
-
From: StarDancer <samael@clark.net>
-
Content-Type: TEXT/PLAIN; charset=US-ASCII
I did a quick check an found that the player known as Kindlestick had
inflated 'imself to 8M. He'd done this @ BushMOO, (for which he's been
@toaded) is doin this @ Lambda an may be doin this @ other MOOs.
I used the followin verb ta catch him:
@verb me:"bigobjs" none none none rd
@prog me:bigobjs
if (this.wizard)
this:tell("Searching the db for big things I can nuke.");
for onum in [1..tonum(max_object())]
$command_utils:sin(5, tostr("Suspending on #", onum));
thing = toobj(onum);
if ($recycler:valid(thing) && $object_utils:has_prop(thing,
"object_size"))
oldsize = thing.object_size[1];
size = time() - thing.object_size[2] < 3600 ? oldsize |
$quota_utils:object_bytes(thing);
size - oldsize > 1000 && this:tell($string_utils:nn(thing), " has
changed by ", $quinn_utils:byte_string(size - oldsize));
size >= 30000 && this:tell($string_utils:nn(thing), "takes up ",
$quinn_utils:byte_string(size));
endif
endfor
this:tell("Done");
else
this:tell(E_PERM);
endif
.
Note that the above verb 'sumes you 'ported an corified Quinn's
utilities by (who else <grin>) Quinn.
--->Cori
*************************************************************************
* "I do not give one snap of my fingers for a person who does not know *
* more than one way to spell a word." -- Benjamin Franklin *
*************************************************************************
Follow-Ups:
Home |
Subject Index |
Thread Index