I ran this and it worked fine
Code:
sub EVENT_SAY {
if ($text =~/Hail/i)
{
quest::say ("Well Hello there $name would you like to (travel) to Blackburrow Or learn about the (quest) for Blackburrow?");
}
if ($text =~/travel/i)
{
quest::say ("$name ,Have fun on your journey");
quest::movepc(17,38.9,-156.9,-4.4);
}
if ($text=~/quest/i)
{
quest::say("Greetings, $name I have a [process]");
}
}
sub EVENT_ITEM {
if (plugin::check_handin(\%itemcount, 16905 => 1, 16857 => 1, 10035 => 1))
{
quest::emote("removes a item from his pocket.");
quest::say("This is yours. Care for it well!");
quest::summonitem(10051); #ruby crown
}
}