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

Comparing deliantra/maps/perl/ipo.ext (file contents):
Revision 1.4 by elmex, Wed Aug 9 11:54:02 2006 UTC vs.
Revision 1.8 by root, Fri Aug 25 17:08:20 2006 UTC

1#! perl 1#! perl
2#CONVERSION: PARTIAL, MISSING ON_APPLY
2 3
3my $price_fact = 50; 4my $price_fact = 50;
4 5
5sub set_package { 6sub set_package {
6 my ($pkg, $from, $to, $bagname, $weight) = @_; 7 my ($pkg, $from, $to, $bagname, $weight) = @_;
46 1 => ['scroll', 'mailscroll'], 47 1 => ['scroll', 'mailscroll'],
47 2 => ['note', 'newspaper'], 48 2 => ['note', 'newspaper'],
48 3 => ['diploma', 'mailwarning'], 49 3 => ['diploma', 'mailwarning'],
49); 50);
50 51
52sub notify_players {
53 my (%sent_targets) = @_;
54
55 # lets message player ingame: this is a NEW feature from the perl IPO :-)
56 for (keys %sent_targets) {
57 if (my $player = cf::player::find $_) {
58 my $cnt = $sent_targets{$_};
59
60 if ($cnt == 1) {
61 $player->ob->message ("You've got new mail.");
62 } else {
63 $player->ob->message ("You've got $cnt new mails.");
64 }
65 }
66 }
67}
68
51sub create_object { 69sub create_object {
52 my ($name, $map, $x, $y, $cb, @a) = @_; 70 my ($name, $map, $x, $y, $cb, @a) = @_;
53 my $o = cf::object::new $name; 71 my $o = cf::object::new $name;
54 my $r = $cb->($o, @a); 72 my $r = $cb->($o, @a);
55 $map->insert_object ($o, $x, $y); 73 $map->insert_object ($o, $x, $y);
56 $r 74 $r
57} 75}
58 76
59# this handler handles to notice the player that he has got mail 77# this handler handles to notice the player that he has got mail
60sub on_login { 78cf::attach_to_players
79 on_login => sub {
61 my ($pl, $host) = @_; 80 my ($pl) = @_;
62 81
63 my $mails = CFMail::get_mail ($pl->ob->name); 82 my $mails = CFMail::get_mail ($pl->ob->name);
64 83
65 my $cnt = @{$mails || []}; 84 my $cnt = @{$mails || []};
66 85
67 if ($cnt == 1) { 86 if ($cnt == 1) {
68 $pl->ob->message ("You got one mail."); 87 $pl->ob->message ("You got one mail.");
69 } elsif ($cnt > 1) { 88 } elsif ($cnt > 1) {
70 $pl->ob->message ("You got $cnt mails."); 89 $pl->ob->message ("You got $cnt mails.");
71 } else { 90 } else {
72 $pl->ob->message ("You haven't got any mail."); 91 $pl->ob->message ("You haven't got any mail.");
92 }
73 } 93 },
74 94;
75 0
76}
77 95
78# this event handler handles receiving of mails 96# this event handler handles receiving of mails
79sub on_apply { 97sub on_apply {
80 my ($ev, $box, $pl) = @_; 98 my ($ev, $box, $pl) = @_;
81 99
141 } 159 }
142 } 160 }
143 161
144 $_->remove for @mails; 162 $_->remove for @mails;
145 163
146 # lets message player ingame: this is a NEW feature from the perl IPO :-) 164 notify_players (%sent_targets);
147 for (keys %sent_targets) {
148 if (my $player = cf::player::find $_) {
149 my $cnt = $sent_targets{$_};
150
151 if ($cnt == 1) {
152 $player->ob->message ("You've got new mail.");
153 } else {
154 $player->ob->message ("You've got $cnt new mails.");
155 }
156 }
157 }
158 165
159 0; 166 0;
160} 167}
161 168
162# this is the main command interface for the IPO NPC 169# this is the main command interface for the IPO NPC
224 } 231 }
225 } 232 }
226 233
227 if ($cnt) { 234 if ($cnt) {
228 $who->reply ($npc, $cnt == 1 ? "Package sent to $arguments." : "Sent $cnt packages to $arguments\n"); 235 $who->reply ($npc, $cnt == 1 ? "Package sent to $arguments." : "Sent $cnt packages to $arguments\n");
236 CFMail::send_mail (1, $arguments, $who->name, "You got $cnt packages from " . $who->name);
237 notify_players ($arguments => 1);
229 } else { 238 } else {
230 $who->reply ($npc, "Sorry, found no package to send to $arguments."); 239 $who->reply ($npc, "Sorry, found no package to send to $arguments.");
231 } 240 }
232 241
233 } else { 242 } else {
238 ."- literacy (%s platinum)\n" 247 ."- literacy (%s platinum)\n"
239 ."- mailscroll <friend> (%s platinum)\n" 248 ."- mailscroll <friend> (%s platinum)\n"
240 ."- bag <friend> (%s platinum)\n" 249 ."- bag <friend> (%s platinum)\n"
241 ."- package <friend> (%s platinum)\n" 250 ."- package <friend> (%s platinum)\n"
242 ."- carton <friend> (%s platinum)\n" 251 ."- carton <friend> (%s platinum)\n"
252 ."- send <friend> (send bags/packages/cartons)\n"
253 ."- receive (to receive packages for you)\n"
243 .($who->flag (cf::FLAG_WIZ) ? "- mailwarning <player>" : ""), 254 .($who->flag (cf::FLAG_WIZ) ? "- mailwarning <player>" : ""),
244 40, 1000, 1, 1, 5, 10 255 40, 1000, 1, 1, 5, 10
245 ); 256 );
246 } 257 }
247 1 258 1

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines