View Single Post
  #1  
Old 01-03-2019, 11:05 AM
ErikSigvard
Fire Beetle
 
Join Date: Jan 2019
Location: Cheyenne, WY
Posts: 11
Default Perl and LUA quests working, but not custom Perl ones

First, thanks to everyone who has worked on this project and all the posters who have brought up problems and solutions. Just...wow!

Second, pretty sure I've read every post with the search terms "quests not working" but I have yet to find a solution.

My setup:

Windows 10 Home
Underfoot client
Server install from GitHub
Perl 5.12.3 (verified via command line 'perl -v')

Went through the instructions to the "t" and everything works beautifully. Built-in quests are working, mobs give exp and loot, game is fast, life is great.

I wanted to create a buff bot in POK that buffs with simple things like SOW, Clarity, etc. So I started off basic, and created a NPC, following the instructions on this forum. I have a cool looking human in a white robe who looks like someone that would buff newbies. I named him Scion_of_Knowledge.

In the eqemu\quests\poknowledge folder, I created a Scion_of_Knowledge.pl file and included the following code to test just a simple "hail":

Code:
sub EVENT_SAY{
	if($text=~/Hail/i)
		{quest::say("Hello.");}
}
Saved the file. Did #reloadquest in game. NPC does not respond to me.
However, when I create the LUA version of the script, my NPC responds.

When I'm testing the Perl version, I make sure to rename my LUA version with a .bak extension because I remember reading that LUA takes precedence when a quest file of the same name exists. How do I get custom Perl quests working?

Thanks in advance.
Reply With Quote