ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/maps/perl/suicide.ext
Revision: 1.3
Committed: Tue Dec 12 16:59:34 2006 UTC (17 years, 5 months ago) by root
Branch: MAIN
Changes since 1.2: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 #! perl
2    
3     # implement a 'suicide' command
4    
5 root 1.3 cf::register_command suicide => sub {
6 root 1.1 my ($who, $args) = @_;
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..");
9 root 1.2 $who->contr->killer ("foolery");
10 root 1.1 $who->kill_player;
11     };
12    
13    
14