ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/maps/perl/suicide.ext
(Generate patch)

Comparing deliantra/maps/perl/suicide.ext (file contents):
Revision 1.2 by root, Fri Aug 25 13:24:06 2006 UTC vs.
Revision 1.3 by root, Tue Dec 12 16:59:34 2006 UTC

1#! perl 1#! perl
2 2
3# implement a 'suicide' command 3# implement a 'suicide' command
4 4
5cf::register_command suicide => 0, sub { 5cf::register_command suicide => sub {
6 my ($who, $args) = @_; 6 my ($who, $args) = @_;
7 7
8 $who->message ("You see no way to escape. Real heroes would rather starve to death than to give up, but you realise you are no hero.."); 8 $who->message ("You see no way to escape. Real heroes would rather starve to death than to give up, but you realise you are no hero..");
9 $who->contr->killer ("foolery"); 9 $who->contr->killer ("foolery");
10 $who->kill_player; 10 $who->kill_player;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines