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.9 by root, Wed Sep 19 21:56:30 2007 UTC vs.
Revision 1.12 by elmex, Mon Oct 8 15:20:38 2007 UTC

12 12
13# prices in plat. 13# prices in plat.
14my %prices = ( 14my %prices = (
15 pen => [ 15 pen => [
16 40, 'stylus', 16 40, 'stylus',
17 sub { $_[0]->name ('IPO Writing Pen'); $_[0]->value (40 * $price_fact); } 17 sub { $_[0]->name ('IPO Writing Pen'); $_[0]->value (0); }
18 ], 18 ],
19 literacy => [ 19 literacy => [
20 1000, 'scroll_literacy', 20 1000, 'scroll_literacy',
21 sub { $_[0]->value (1000 * $price_fact) } 21 sub { $_[0]->value (0) }
22 ], 22 ],
23 mailscroll => [ 23 mailscroll => [
24 1, 'mailscroll_empty', 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 (0);
29 }, 29 },
30 'plarg' 30 'plarg'
31 ], 31 ],
32 bag => [ 1, 'r_sack', sub { set_package (@_, bag => 5000) }, 'plarg' ], 32 bag => [ 1, 'r_sack', sub { set_package (@_, bag => 5000) }, 'plarg' ],
33 package => [ 5, 'r_sack', sub { set_package (@_, package => 50000) }, 'plarg' ], 33 package => [ 5, 'r_sack', sub { set_package (@_, package => 50000) }, 'plarg' ],
68 68
69sub create_object { 69sub create_object {
70 my ($name, $map, $x, $y, $cb, @a) = @_; 70 my ($name, $map, $x, $y, $cb, @a) = @_;
71 my $o = cf::object::new $name; 71 my $o = cf::object::new $name;
72 my $r = $cb->($o, @a); 72 my $r = $cb->($o, @a);
73 $map->insert_object ($o, $x, $y); 73 $map->insert ($o, $x, $y);
74 $r 74 $r
75} 75}
76 76
77# this handler notifies the player of new mail 77# this handler notifies the player of new mail
78cf::player->attach ( 78cf::player->attach (
175 if (my $pr = $prices{$cmd}) { 175 if (my $pr = $prices{$cmd}) {
176 if ($cmd eq 'mailwarning' and !$who->flag (cf::FLAG_WIZ)) { 176 if ($cmd eq 'mailwarning' and !$who->flag (cf::FLAG_WIZ)) {
177 return 1; 177 return 1;
178 } 178 }
179 179
180 $who->pay_amount ($pr->[0] * $price_fact); 180 if ($who->pay_amount ($pr->[0] * $price_fact)) {
181 if ($pr->[3] && not cf::player::exists $arguments) { 181 if ($pr->[3] && not cf::player::exists $arguments) {
182 $who->reply ($npc, "Sorry, there is no '$arguments'"); 182 $who->reply ($npc, "Sorry, there is no '$arguments'");
183 } else {
184 create_object ($pr->[1], $who->map, $x, $y, $pr->[2], $who->name, $arguments);
185 $who->reply ($npc, "Here is your $cmd");
186 }
183 } else { 187 } else {
184 create_object ($pr->[1], $who->map, $x, $y, $pr->[2], $who->name, $arguments); 188 $who->reply ($npc, "Sorry, you don't have enough money.");
185 $who->reply ($npc, "Here is your $cmd");
186 } 189 }
187 190
188 } elsif ($cmd eq 'receive') { 191 } elsif ($cmd eq 'receive') {
189 cf::async { 192 cf::async {
190 $Coro::current->{desc} = "ipo receive"; 193 $Coro::current->{desc} = "ipo receive";
192 my $storage = cf::map::find ("/planes/IPO_storage"); 195 my $storage = cf::map::find ("/planes/IPO_storage");
193 unless ($storage) { 196 unless ($storage) {
194 $who->reply ($npc, "Sorry, our package delivery service is currently in strike. Please come back later."); 197 $who->reply ($npc, "Sorry, our package delivery service is currently in strike. Please come back later.");
195 return 1; 198 return 1;
196 } 199 }
200 $storage->load;
197 201
198 my $plname = $who->name; 202 my $plname = $who->name;
199 my $cnt; 203 my $cnt;
200 for ($storage->at (2, 2)) { 204 for ($storage->at (2, 2)) {
201 if ($_->name () =~ /^\S+ F: \S+ T: \Q$plname\E$/) { 205 if ($_->name () =~ /^\S+ F: \S+ T: \Q$plname\E$/) {
223 my $storage = cf::map::find ("/planes/IPO_storage"); 227 my $storage = cf::map::find ("/planes/IPO_storage");
224 unless ($storage) { 228 unless ($storage) {
225 $who->reply ($npc, "Sorry, our package delivery service is currently in strike. Please come back later."); 229 $who->reply ($npc, "Sorry, our package delivery service is currently in strike. Please come back later.");
226 return 1; 230 return 1;
227 } 231 }
232 $storage->load;
228 233
229 my $cnt; 234 my $cnt;
230 for ($who->inv) { 235 for ($who->inv) {
231 if ($_->name () =~ /^(bag|package|carton) T: \Q$arguments\E F: (\S+)$/) { 236 if ($_->name () =~ /^(bag|package|carton) T: \Q$arguments\E F: (\S+)$/) {
232 $_->name ("$1 F: $2 T: $arguments"); 237 $_->name ("$1 F: $2 T: $arguments");
233 $_->teleport ($storage, 2, 2); 238 $storage->insert ($_, 2, 2);
239 $who->esrv_del_item ($_->count);
234 $cnt++; 240 $cnt++;
235 } 241 }
236 } 242 }
237 243
238 if ($cnt) { 244 if ($cnt) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines