sub EVENT_SAY {
if ($text=~/hail/i) {
quest::say("Greetings $name, are you [interested] in getting your starting equip?");
}
if ($text=~/interested/i) {
quest::say("Here's your Items");
quest::summonitem("1001");
quest::summonitem("1002");
quest::summonitem("1003");
quest::summonitem("1004");
}
}
Tried this and the quest works. If you get an error, it's likely a perl config/missing file issue
GeorgeS
|