im lookin for a command to reload the responces on the trigger brain....im not sure..
i found this is trigger.pm so it might help
Code:
sub loadResponses<br />{<br /> my $this = shift;<br /><br /> open( FILE, $this->{'filename'} ) || return;<br /> my @lines = <FILE>;<br /> close( FILE );<br /><br /> chomp @lines;<br /><br /> # remove the data version line, do nothing with it at the moment<br /> my $data_version = shift;<br /><br /> $this->{'direct_responses'} = \@lines;<br />}