View Single Post
  #89  
Old 04-16-2008, 10:32 AM
Muuss
Dragon
 
Join Date: May 2003
Posts: 539
Default

in quests/quest.pm, change sub ChooseRandom to :

Code:
sub ChooseRandom {
  my $item=0;
  foreach $item (@_) { main::add_received($item); }
  return $_[int(rand($#_)+1)];
}
This will add all the items returned by ChooseRandom to the database.
__________________
Muuss - [PEQGC] Dobl, the ogre that counts for 2 !
http://www.vilvert.fr/page.php?id=10
Reply With Quote