View Single Post
  #13  
Old 07-22-2016, 12:59 AM
ghanja's Avatar
ghanja
Dragon
 
Join Date: Aug 2012
Location: Hershey, PA
Posts: 499
Default

All those messages are "normal" considering there are duplicate sub-routines in:
spawn_utils.pl and spawn_tools.pl and client_messages.pl and vtell.pl, you can delete vtell.pl (if I remember correctly, as that subroutine is in client_messages.pl). There are duplicates in spawn_utils.pl and spawn_tools.pl as well, except for two subroutines (again if I remember correctly) that the one has and the other does not. You can ignore the messages altogether, or look into doing the above.

For quest_handin.pl change your variable declaration to look like this to remove the
Quote:
"my" variable #Item1 masks..
lines to this:
Code:
	my $npc = plugin::val('$npc');
	my $client = plugin::val('$client');
	my $name = plugin::val('$name');
	my $itemcount = plugin::var('itemcount');
	my $ulevel = plugin::val('$ulevel');
	my $npc_name = $npc->GetCleanName();
	my $RewardID = $_[0];
	my $NPCMESSAGE = $_[1];
	my $NPCANIMATION = $_[2];
	my $CaseItems = $_[3];
	my $Item1 = defined $_[4] ? $_[4] : 0;
	my $ItemCount1 = $_[5];
	my $Item2 = defined $_[6] ? $_[6] : 0;
	my $ItemCount2 = $_[7];
	my $Item3 = defined $_[8] ? $_[8] : 0;
	my $ItemCount3 = $_[9];
	my $Item4 = defined $_[10] ? $_[10] : 0;
	my $ItemCount4 = $_[11];
	my $Reward = quest::varlink($RewardID);
Nothing telling in that #reloadquest capture (I assume that is how you generated that log) that I see.
Reply With Quote