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

Comparing deliantra/maps/perl/commands.ext (file contents):
Revision 1.4 by root, Fri Sep 29 19:21:25 2006 UTC vs.
Revision 1.11 by root, Wed Nov 8 00:54:11 2006 UTC

31 $ob->message ("You stop calling your " . $item->base_name . " with weird names."); 31 $ob->message ("You stop calling your " . $item->base_name . " with weird names.");
32 } 32 }
33 33
34 $ob->esrv_update_item (cf::UPD_NAME, $item); 34 $ob->esrv_update_item (cf::UPD_NAME, $item);
35 35
36 return 1; 36 1
37} 37}
38 38
39sub who_listing() { 39sub who_listing(;$) {
40 my ($privileged) = @_; 40 my ($privileged) = @_;
41 41
42 my ($numwiz, $numafk) = (0, 0); 42 my ($numwiz, $numafk) = (0, 0);
43 my @pl; 43 my @pl;
44 44
61 61
62 "* " . $ob->name . "/" . $ob->level . " " . (length $pl->own_title ? $pl->own_title : "the " . $pl->title) 62 "* " . $ob->name . "/" . $ob->level . " " . (length $pl->own_title ? $pl->own_title : "the " . $pl->title)
63 . ($pl->peaceful ? " [peaceful]" : " [HOSTILE]") 63 . ($pl->peaceful ? " [peaceful]" : " [HOSTILE]")
64 . ($ob->flag (cf::FLAG_AFK) ? " [AFK]" : "") 64 . ($ob->flag (cf::FLAG_AFK) ? " [AFK]" : "")
65 . ($ob->flag (cf::FLAG_WIZ) ? " [WIZ]" : "") 65 . ($ob->flag (cf::FLAG_WIZ) ? " [WIZ]" : "")
66 . " [" . $pl->client . "]"
66 . " [" . ($pl->peaceful ? $ob->map->path : $ob->map->region ? $ob->map->region->name : "the unknown") . "]" 67 . " [" . ($pl->peaceful || $privileged ? $ob->map->path : $ob->map->region ? $ob->map->region->name : "the unknown") . "]"
68 . ($privileged ? " " . $pl->host : "")
67 } sort { $a->ob->name cmp $b->ob->name } @pl 69 } sort { (lc $a->ob->name) cmp (lc $b->ob->name) } @pl
68 ) 70 )
69} 71}
70 72
71cf::register_command who => $cf::TICK, sub { 73cf::register_command who => $cf::TICK, sub {
72 my ($ob, $arg) = @_; 74 my ($ob, $arg) = @_;
73 75
74 $ob->reply (undef, (join "x\n", who_listing), cf::NDI_UNIQUE | cf::NDI_GOLD); 76 $ob->reply (undef, (join "\n", who_listing $ob->flag (cf::FLAG_WIZ)), cf::NDI_UNIQUE | cf::NDI_DK_ORANGE);
77
78 1
75}; 79};
76 80
77cf::register_command rename => $cf::TICK, sub { 81cf::register_command rename => $cf::TICK, sub {
78 my ($ob, $arg) = @_; 82 my ($ob, $arg) = @_;
79 83
80 if ($arg =~ /^\s* (?: <([^>]+)> \s+)? to \s+ <([^>]+)> \s*$/x) { 84 if ($arg =~ /^\s* (?: <([^>]+)> \s+)? to \s+ <([^>]*)> \s*$/x) {
81 # compatibility syntax 85 # compatibility syntax
82 rename_to $ob, $1, $2; 86 rename_to $ob, $1, $2;
83 } elsif ($arg =~ / 87 } elsif ($arg =~ /
84 ^\s* 88 ^\s*
85 (?: 89 (?:
92 # does not unquote $1 or $3 96 # does not unquote $1 or $3
93 rename_to $ob, $2||$1, $4||$3; 97 rename_to $ob, $2||$1, $4||$3;
94 } else { 98 } else {
95 $ob->reply (undef, 'Syntax error. Rename usage: rename ["oldname"] to "newname"'); 99 $ob->reply (undef, 'Syntax error. Rename usage: rename ["oldname"] to "newname"');
96 } 100 }
101
102 1
97}; 103};
104

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines