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.4 by root, Tue Apr 17 10:38:28 2007 UTC vs.
Revision 1.8 by root, Tue Aug 28 19:30:09 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 &
32ext::help::reload &
33ext::books::reload &
34ext::map_world::reload &
31EOF 35EOF
32 print "\n> "; 36 print "\n> ";
33 37
34 Event->io (fd => $fh, poll => 'r', data => 0, cb => sub { 38 Event->io (fd => $fh, poll => 'r', data => 0, cb => sub {
35 if (defined (my $cmd = <$fh>)) { 39 if (defined (my $cmd = <$fh>)) {
57 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res; 61 print "result:\n", cf::dumpval @res > 1 ? \@res : $res[0] if @res;
58 print "\n> "; 62 print "\n> ";
59 }; 63 };
60 64
61 if ($cmd =~ s/\s*&$//) { 65 if ($cmd =~ s/\s*&$//) {
62 Coro::async_pool { $sub->() }; 66 Coro::async { $sub->() };
63 } else { 67 } else {
64 $sub->(); 68 $sub->();
65 } 69 }
66 } 70 }
67 71

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines