grendel-1.0.0a7/backup/
grendel-1.0.0a7/bin/
grendel-1.0.0a7/boards/
grendel-1.0.0a7/clans/
grendel-1.0.0a7/documentation/todo/
grendel-1.0.0a7/help/
grendel-1.0.0a7/logs/
grendel-1.0.0a7/players/
grendel-1.0.0a7/progs/
grendel-1.0.0a7/races/
grendel-1.0.0a7/src/contrib/
grendel-1.0.0a7/src/modules/speller/
grendel-1.0.0a7/src/modules/status/
grendel-1.0.0a7/src/tests/
grendel-1.0.0a7/src/tests/dunit/
require "glib.c"

void onAct(external ch, external target, string arg)
{
  arg = uppercase(arg);

  if(match(uppercase(arg), "*FREEDOM BACK*") == true)
  {
    do("say So you want your freedom back? Well, " + target.Pname + ", the only thing " +
       "you'll have to do is kill this ferocious beast. Good luck, you'll need it");

    sleep(2);

    do("unlock south");
    do("open south");

    sleep(10);

    do("close south");
    do("lock south");
  }
}