View Single Post
  #9  
Old 06-19-2008, 12:37 AM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

When making the pet, set the race to 240 and the bodytype to 11 and that should make it invisible with no name and untargetable. You can also set it to untrackable too if you wanted.

And, so you know, you cannot set a proximity or make changes to it without resetting the zone. Just doing a #reloadquest won't do it. The best way is to zone out and back in or out and do a #zoneshutdown and back in. That is probably why your proximity wasn't working.

And for the actual quest, you would probably be better off using Quest Objects from this wiki page:

http://www.eqemulator.net/wiki/wikka...a=QuestObjects

I don't use quest objects often yet, but maybe something close to this would be a way to start it:

Code:
sub EVENT_SPAWN {
$owner = $mob->GetOwnerID();
quest::settarget(entity,$owner);
}
But, if all you are wanting to do is have a clicky that summons an item, you can do that easily by editing a spell server-side. Just use the Ailia/Bleh spell editor and look at one of the mage summon item spells to see what you need to set to get it working. Then, you can use another free spell for the clickie. You can even set it to summon a whole bag full of items if you want
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!
Reply With Quote