EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Quests::Q&A (https://www.eqemulator.org/forums/forumdisplay.php?f=599)
-   -   Quests not summoning items (https://www.eqemulator.org/forums/showthread.php?t=31200)

everlastnmn 05-01-2010 09:00 PM

Quests not summoning items
 
I set up 3 new npc's - buff bot, armor summoning bot for bots and a summoning bot for items.

the buff bot is all that works. The other 2 summoning npc's work upto the point where they are supposed to summon and these are taken off the boards and were verified as working

joligario 05-01-2010 09:06 PM

Did you get the scripts in the right folder? Are they spelled right? Files are case sensitive and spaces need to be replaced with "_" such as "First_Last.pl". Other than that, you didn't give us much to work with.

everlastnmn 05-01-2010 09:08 PM

I'm using Georges tools quest editor

everlastnmn 05-01-2010 09:09 PM

here is the script I'm running :


#############
#Written By : Cubber
#Quest Name: Small Server Help
#Quest Zone: Bazaar
#Quest NPC: Galarono_McHalorsos
#################
sub EVENT_SAY
{
if($text=~/Hail/i)
{
quest::say("Hello there $name, Looking for some new toys are ya? I just may have a some special equipment stashed away here somewhere, are you [interested] ?");
}
if ($text=~/interested/i)

{
quest::say("Tell me $race what are ya looking for? [Bags], [Special Items], [Pet Gear], an [Adventurer's Stone], some [Dye] for your armour, or your [Epic]? I can also help you catch up to your friends by granting you some [Levels].");
}

if ($text=~/bags/i)
{
quest::say("Here are some bags to help carry all your loot!");
quest::SummonItem("17800");
quest::SummonItem("17800");
quest::SummonItem("17800");
}

if ($text=~/Special Items/i)
{
quest::say("Here are a few special items to help you along in your travels!");
quest::SummonItem("31951");
quest::SummonItem("31883");
quest::SummonItem("31881");
quest::SummonItem("31885");
quest::SummonItem("31954");
}

if ($text=~/Pet Gear/i)
{
quest::say("Here are some goodies for your pet!");
quest::SummonItem("46987");
quest::SummonItem("28595");
quest::SummonItem("28595");
quest::SummonItem("28596");
quest::SummonItem("28596");
quest::SummonItem("28598");
}

if ($text=~/Adventurer's Stone/i)
{
quest::say("Good luck on your adventures!");
quest::SummonItem("41000");
}

if ($text=~/Dye/i)
{
quest::say("Don't go to crazy with this stuff now!");
quest::SummonItem("32557");
quest::SummonItem("32557");
quest::SummonItem("32557");
quest::SummonItem("32557");
quest::SummonItem("32557");
quest::SummonItem("32557");
quest::SummonItem("32557");
quest::SummonItem("32557");
quest::SummonItem("32557");
quest::SummonItem("32557");
}

if ($text=~/Epic/i)
{
quest::say("HaHa! I got ya $class ... You need to earn that one for yourself!");
}

if ($text=~/Levels/i)
{
quest::say("What level would you like me to grant you? [10], [20], [30], [40], or [50]?");
}

if ($text=~/10/i)
{
quest::say("There you are! Don't forget to go train, and get your new spells or skills.");
quest::level(10);
}

if ($text=~/20/i)
{
quest::say("There you are! Don't forget to go train, and get your new spells or skills.");
quest::level(20);
}

if ($text=~/30/i)
{
quest::say("There you are! Don't forget to go train, and get your new spells or skills.");
quest::level(30);
}

if ($text=~/40/i)
{
quest::say("There you are! Don't forget to go train, and get your new spells or skills.");
quest::level(40);
}

if ($text=~/50/i)
{
quest::say("There you are! Don't forget to go train, and get your new spells or skills.");
quest::level(50);
}

}

everlastnmn 05-01-2010 09:10 PM

if you say "bags" it will say "Here are some bags to help carry all your loot!" but won't summon the bags.. same thing for everything that is supposed to be summoned.

songie 05-01-2010 09:30 PM

Georges tool sets it like this SummonItem but it needs to be summonitem with no caps for it to work, had it a couple of times aswell edit it in notepad and it should work fine

everlastnmn 05-01-2010 09:42 PM

+1 for Songie.. you are the man :)

Working now

songie 05-01-2010 10:03 PM

Np, glad i could be usefull for once :) I am still learning allot everyday

Auxie 05-03-2010 12:05 AM

i've spent hours troubleshooting this very error a few weeks back. It was then that I decided notepad++ would be much more usefull than georges quest editor. However I use georges tools for just about everything else because they are amazingly helpful and worthwhile tools.


All times are GMT -4. The time now is 02:35 PM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.