ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/dmcommands.ext
(Generate patch)

Comparing deliantra/server/ext/dmcommands.ext (file contents):
Revision 1.1 by root, Fri Dec 15 19:29:18 2006 UTC vs.
Revision 1.15 by pippijn, Thu Mar 1 20:17:01 2007 UTC

5cf::register_command goto => sub { 5cf::register_command goto => sub {
6 my ($ob, $arg) = @_; 6 my ($ob, $arg) = @_;
7 7
8 return unless $ob->may ("command_goto"); 8 return unless $ob->may ("command_goto");
9 9
10 my $portal = cf::object::new "exit"; 10 my ($path, $x, $y) = split /\s+/, $arg, 3;
11 11
12 $portal->slaying ($arg); 12 $ob->goto ($path, $x, $y);
13 $portal->stats->hp (0);
14 $portal->stats->sp (0);
15 13
16 $portal->apply ($ob); 14 1
15};
17 16
18 $portal->destroy; 17cf::register_command teleport => sub {
18 my ($ob, $arg) = @_;
19
20 return unless $ob->may ("command_teleport");
21
22 cf::async {
23 my $other = cf::player::find_active $arg
24 or return $ob->reply (undef, "$arg: no such player.");
25
26 $ob->goto ($other->maplevel, $other->ob->x, $other->ob->y);
27 };
19 28
20 1 29 1
21}; 30};
22 31
23cf::register_command wizpass => sub { 32cf::register_command wizpass => sub {
66 $ob->reply (undef, "You can temporarily see through walls."); 75 $ob->reply (undef, "You can temporarily see through walls.");
67 76
68 1 77 1
69}; 78};
70 79
80cf::register_command reset => sub {
81 my ($ob, $arg) = @_;
82
83 return unless $ob->may ("command_reset");
84
85 my $map = $ob->map;
86
87 my @pl = $map->players;
88 $_->enter_link for @pl;
89 cf::async {
90 my $name = $map->visible_name;
91
92 $map->reset;
93 $_->leave_link for @pl;
94
95 $ob->reply (undef, "$name was reset.");
96 };
97
98 1
99};
100
71for my $command (qw(reset teleport summon arrest kick banish)) { 101for my $command (qw(summon arrest kick banish)) {
72 my $method = "command_$command"; 102 my $method = "command_$command";
73 103
74 cf::register_command $command => sub { 104 cf::register_command $command => sub {
75 my ($ob, $arg) = @_; 105 my ($ob, $arg) = @_;
76 106

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines