Go Back   EQEmulator Home > EQEmulator Forums > Quests > Quests::Q&A

Quests::Q&A This is the quest support section

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #5  
Old 06-30-2008, 02:46 PM
Striat
Sarnak
 
Join Date: Aug 2006
Posts: 60
Default

You could try this. You can switch things up for environmental damage and whatnot as well.

Code:
$myvar = 0;
sub EVENT_ATTACK {
   if($myvar==0) {
      quest::say("$name, do not attack me.  You have earned this punishment!");

##client is damaged.  Format is: from/amount/spellid/skill
#So, from the npc, 1000dmg, no spell is used, and 1 is for the skill id.

      $client->Damage($npc, 1000, SPELL_UNKNOWN, 1);
      $myvar=1;
   }
}
I recommend using a timer or something to resetting variable though. Either could use combat_event or a timer when he engages. With a timer a:

Code:
$myvar = undef;

sub EVENT_ATTACK {

##client is damaged.  Format is: from/amount/spellid/skill
#So, from the npc, 1000dmg, no spell is used, and 1 is for the skill id

   if(!$myvar) {
      quest::say("$name, do not attack me.  You have earned this punishment!");
	$client->Damage($npc, 1000, SPELL_UNKNOWN, 1);
	$myvar = 1;
	quest::settimer("checkengaged",1);
   }
}

sub EVENT_TIMER {
	if ($timer eq "checkengaged") {
	if (!$npc->IsEngaged();
	$myvar = undef;
	quest::stoptimer("checkengaged");
	}
}
Honestly, combat status toggle is probably better. However, I just was using this method before it was implemented.
Reply With Quote
 


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:08 AM.


 

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 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3