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)
{
  if(match(uppercase(arg), "*HELLO*") == true)
  {
    sleep(1);

    do("say Hello " + target.name + ", how are you today?");
  }

  if(match(uppercase(arg), "*FINE*") == true)
  {
    sleep(1);

    do("say Very well, good luck on your travels");
    do("tip " + target.name);
  }
}