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

Comparing deliantra/server/ext/ipo.ext (file contents):
Revision 1.4 by root, Sun Jan 7 02:39:14 2007 UTC vs.
Revision 1.9 by root, Wed Sep 19 21:56:30 2007 UTC

19 literacy => [ 19 literacy => [
20 1000, 'scroll_literacy', 20 1000, 'scroll_literacy',
21 sub { $_[0]->value (1000 * $price_fact) } 21 sub { $_[0]->value (1000 * $price_fact) }
22 ], 22 ],
23 mailscroll => [ 23 mailscroll => [
24 1, 'scroll', 24 1, 'mailscroll_empty',
25 sub { 25 sub {
26 $_[0]->name ("mailscroll T: $_[2] F: $_[1]"); 26 $_[0]->name ("mailscroll T: $_[2] F: $_[1]");
27 $_[0]->name_pl ("mailscrolls T: $_[2] F: $_[1]"); 27 $_[0]->name_pl ("mailscrolls T: $_[2] F: $_[1]");
28 $_[0]->value (1 * $price_fact); 28 $_[0]->value (1 * $price_fact);
29 }, 29 },
118 my $mail = cf::object::new $type->[0]; 118 my $mail = cf::object::new $type->[0];
119 $mail->name ("$type->[1] F: $from T: " .$pl->name); 119 $mail->name ("$type->[1] F: $from T: " .$pl->name);
120 $mail->name_pl ("$type->[1]s F: $from T: " .$pl->name); 120 $mail->name_pl ("$type->[1]s F: $from T: " .$pl->name);
121 $mail->msg ($msg); 121 $mail->msg ($msg);
122 $mail->value (0); 122 $mail->value (0);
123 $mail->insert_in_ob ($box); 123 $box->insert ($mail);
124 } 124 }
125 125
126 $cnt += @$mails; 126 $cnt += @$mails;
127 127
128 if ($cnt == 1) { 128 if ($cnt == 1) {
184 create_object ($pr->[1], $who->map, $x, $y, $pr->[2], $who->name, $arguments); 184 create_object ($pr->[1], $who->map, $x, $y, $pr->[2], $who->name, $arguments);
185 $who->reply ($npc, "Here is your $cmd"); 185 $who->reply ($npc, "Here is your $cmd");
186 } 186 }
187 187
188 } elsif ($cmd eq 'receive') { 188 } elsif ($cmd eq 'receive') {
189 cf::async {
190 $Coro::current->{desc} = "ipo receive";
191
189 my $storage = cf::map::find ("/planes/IPO_storage"); 192 my $storage = cf::map::find ("/planes/IPO_storage");
190 unless ($storage) { 193 unless ($storage) {
191 $who->reply ($npc, "Sorry, our package delivery service is currently in strike. Please come back later."); 194 $who->reply ($npc, "Sorry, our package delivery service is currently in strike. Please come back later.");
192 return 1; 195 return 1;
193 } 196 }
194 197
195 my $plname = $who->name; 198 my $plname = $who->name;
196 my $cnt; 199 my $cnt;
197 for ($storage->at (2, 2)) { 200 for ($storage->at (2, 2)) {
198 if ($_->name () =~ /^\S+ F: \S+ T: \Q$plname\E$/) { 201 if ($_->name () =~ /^\S+ F: \S+ T: \Q$plname\E$/) {
199 $_->insert_in_ob ($who); 202 $who->insert ($_);
200 $cnt++; 203 $cnt++;
201 } 204 }
202 } 205 }
203 206
204 if ($cnt) { 207 if ($cnt) {
205 $who->reply ($npc, $cnt == 1 ? "Here is your pakage." : "Here are your packages."); 208 $who->reply ($npc, $cnt == 1 ? "Here is your package." : "Here are your packages.");
206 } else { 209 } else {
207 $who->reply ($npc, "Sorry, no deliverys for you sir."); 210 $who->reply ($npc, "Sorry, no deliveries for you sir.");
211 }
208 } 212 }
209 213
210 } elsif ($cmd eq 'send') { 214 } elsif ($cmd eq 'send') {
211 unless ($arguments =~ /^\S+$/) { 215 unless ($arguments =~ /^\S+$/) {
212 $who->reply ($npc, "Send to who?"); 216 $who->reply ($npc, "Send to who?");
213 return 1; 217 return 1;
214 } 218 }
215 219
220 cf::async {
221 $Coro::current->{desc} = "ipo send";
222
216 my $storage = cf::map::find ("/planes/IPO_storage"); 223 my $storage = cf::map::find ("/planes/IPO_storage");
217 unless ($storage) { 224 unless ($storage) {
218 $who->reply ($npc, "Sorry, our package delivery service is currently in strike. Please come back later."); 225 $who->reply ($npc, "Sorry, our package delivery service is currently in strike. Please come back later.");
219 return 1; 226 return 1;
220 } 227 }
221 228
222 my $cnt; 229 my $cnt;
223 for ($who->inv) { 230 for ($who->inv) {
224 if ($_->name () =~ /^(bag|package|carton) T: \Q$arguments\E F: (\S+)$/) { 231 if ($_->name () =~ /^(bag|package|carton) T: \Q$arguments\E F: (\S+)$/) {
225 $_->name ("$1 F: $2 T: $arguments"); 232 $_->name ("$1 F: $2 T: $arguments");
226 $_->teleport ($storage, 2, 2); 233 $_->teleport ($storage, 2, 2);
227 $cnt++; 234 $cnt++;
228 } 235 }
229 } 236 }
230 237
231 if ($cnt) { 238 if ($cnt) {
232 $who->reply ($npc, $cnt == 1 ? "Package sent to $arguments." : "Sent $cnt packages to $arguments\n"); 239 $who->reply ($npc, $cnt == 1 ? "Package sent to $arguments." : "Sent $cnt packages to $arguments\n");
233 CFMail::send_mail (1, $arguments, $who->name, "You got $cnt packages from " . $who->name); 240 CFMail::send_mail (1, $arguments, $who->name, "You got $cnt packages from " . $who->name);
234 notify_players ($arguments => 1); 241 notify_players ($arguments => 1);
235 } else { 242 } else {
236 $who->reply ($npc, "Sorry, found no package to send to $arguments."); 243 $who->reply ($npc, "Sorry, found no package to send to $arguments.");
244 }
237 } 245 }
238 246
239 } else { 247 } else {
240 $who->reply ($npc, 248 $who->reply ($npc,
241 sprintf "How can I help you?\n" 249 sprintf "How can I help you?\n"
258package CFMail; 266package CFMail;
259 267
260use POSIX qw/strftime/; 268use POSIX qw/strftime/;
261use CFDB; 269use CFDB;
262 270
263my $MAILDB = CFDB->new (db_file => cf::localdir . "/crossfiremail"); 271my $MAILDB = CFDB->new (db_file => "$LOCALDIR/crossfiremail");
264 272
265sub get_mail { 273sub get_mail {
266 my ($toname) = @_; 274 my ($toname) = @_;
267 $MAILDB->get ($toname); 275 $MAILDB->get ($toname);
268} 276}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines