Go Back   EQEmulator Home > EQEmulator Forums > Quests > Quests::Custom

Quests::Custom Custom Quests here

Reply
 
Thread Tools Display Modes
  #1  
Old 01-24-2017, 06:00 PM
cannon
Hill Giant
 
Join Date: Dec 2004
Location: Pittsburgh, PA
Posts: 128
Default Help with a return item quest.

hands in item 1
receives item 2

item 2 is LORE

tries to hand in item 1 while already having item 2 in inventory which is LORE

npc eats item and the you already have a LORE item message appears.

How would I go about having item 1 returned if the player already has the LORE item?

sub EVENT_SAY{
if($text=~/hail/i){
if(plugin::check_hasitem($client, item2)){
quest::say("You already have this item!");
}
if (plugin::check_handin(\%item1, ($item{$class}) => 1))
my %giveitem= (warrior"item2);
else {
plugin::return_items(\%item2);
# quest::say ("You already have a LORE item, $name.");
}
}
}

Looking for a way to check if the returned item is already present on the player and then issue back the item that was turned in.
Reply With Quote
  #2  
Old 01-25-2017, 12:10 AM
ghanja's Avatar
ghanja
Dragon
 
Join Date: Aug 2012
Location: Hershey, PA
Posts: 499
Default

The above has syntax errors and doesn't look complete, sorta like you copy/pasted only what you felt was relevant. Which is ok mind you, however; the below may not do all you wanted it to do as a result:

Code:
sub EVENT_SPAWN {
	plugin::SetProx(20,20);
}

sub EVENT_ENTER {
	quest::say("How are you enjoying your ".quest::varlink(1111)."?") if plugin::check_hasitem($client, 1111);
}

sub EVENT_SAY {
	if($text=~/hail/i) {
		if (plugin::check_hasitem($client, 1111)) {
			quest::say ("You already have a ".quest::varlink(1111)."!");
		} else {
			quest::say ("Oh, hello $name, so have you come to claim your ".quest::varlink(1111)."?");
		}
	}
}

sub EVENT_ITEM {
	if (!plugin::check_hasitem($client, 1111) && plugin::check_handin(\%item1, 2222 => 1)) {
		quest::say ("Congratulations $name! Enjoy your ".quest::varlink(1111)."!");
		quest::summonitem(1111);
	} else {
		plugin::returnitems(\%itemcount);
	}
}
Reply With Quote
  #3  
Old 01-25-2017, 07:41 PM
cannon
Hill Giant
 
Join Date: Dec 2004
Location: Pittsburgh, PA
Posts: 128
Default

Thanks again for your help and time.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 07:57 PM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3