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

Comparing deliantra/server/ext/dm-support.ext (file contents):
Revision 1.6 by root, Thu May 24 03:33:29 2007 UTC vs.
Revision 1.9 by root, Thu Sep 13 08:35:24 2007 UTC

22You can freely use \$a .. \$z and \@l and \%l 22You can freely use \$a .. \$z and \@l and \%l
23 23
24Useful commands (note the '&'): 24Useful commands (note the '&'):
25 25
26reload_perl & 26reload_perl &
27reload_config &
27reload_regions & 28reload_regions &
28reload_facedata & 29reload_facedata &
29reload_treasures & 30reload_treasures &
30reload_archetypes & 31reload_archetypes &
31ext::help::reload & 32ext::help::reload &
32ext::books::reload & 33ext::books::reload &
34ext::map_tags::reload &
33ext::map_world::reload & 35ext::map_world::reload &
34EOF 36EOF
35 print "\n> "; 37 print "\n> ";
36 38
37 Event->io (fd => $fh, poll => 'r', data => 0, cb => sub { 39 Event->io (fd => $fh, poll => 'r', data => 0, cb => sub {
60 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res; 62 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res;
61 print "\n> "; 63 print "\n> ";
62 }; 64 };
63 65
64 if ($cmd =~ s/\s*&$//) { 66 if ($cmd =~ s/\s*&$//) {
65 Coro::async_pool { $sub->() }; 67 Coro::async { $sub->() };
66 } else { 68 } else {
67 $sub->(); 69 $sub->();
68 } 70 }
69 } 71 }
70 72

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines