View Single Post
  #5  
Old 06-22-2016, 07:50 PM
DanCanDo's Avatar
DanCanDo
Discordant
 
Join Date: May 2016
Location: Above Hell
Posts: 400
Default

Quote:
Originally Posted by ghanja View Post
Are you certain you have Perl DBI installed?
Yes, I have the DBI installed. Most of the custom quests/plugins work good
so far. I ran those logging cmds you suggested, seemed to show success in
the console, but when looking in logs, the only thing I am seeing related to
any quests is this :

Code:
[06-22-2016 :: 17:30:13] [Quests] Useless use of a variable in void context at quests/nexus/Bot_Giver.pl line 5.
Bot_Giver is the NPC I put that script on. Line 5 is part of the example gave
me. But that's the only thing showing up in any logs. I did contain it all on the
NPC, as you suggested. Still nothing happening. The only reaction I get from
NPC is on the "hail", it faces me, as normal.
Code:
sub EVENT_SAY {
	if (($text=~/hail/i && $status == 0 && $ulevel=>10)) {
		UpdateStatus($client->AccountID(),1);
	}
} #This is line 5
Reply With Quote