• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->

MQ2Autoforage (1 Viewer)

rawwar

New member
Joined
Jun 7, 2005
RedCents
20¢
I wanted to see of one of the plugin masters could possibly help me with something... I run a Bard who auto forages using MQ2autoforage and when I die I get spammed you cannot forage dead or something like that ... can this plugin be modified to recognize the event death and suspend foraging while in the rezz screen .. I have to do a quick unload when I die to see guild or raid or tells because of the spam ..... this could also be added to MQ2twist if it is figured out ....
 
Last edited:
MQ2Autoforage:
Rich (BB code):
PLUGIN_API VOID OnPulse(VOID)
{
if (IsWindowOpen("RespawnWnd")) {
	IsForaging = false;
	WriteChatColor("You died! Auto-foraging disabled!",CONCOLOR_RED);
}

   if (!MQ2ForageEnabled)
   {
      return;
   }

MQ2Twist
Rich (BB code):
PLUGIN_API VOID OnPulse(VOID)
{
   CHAR szTemp[MAX_STRING] = {0};
   PSPELL pSpell;
   int a,b;

if (IsWindowOpen("RespawnWnd")) {
      DoSwapOut();
      bTwist=false;
      HoldSong=0;
      MQ2TwistDoCommand(pChar,"/stopsong");
      WriteChatColor("You died! Stopping twist!",USERCOLOR_DEFAULT);
      return;
}

   if (!MQ2TwistEnabled || !CheckCharState()) return;

   if ((HoldSong>0) || ((NumSongs==1) && !altTwist)) {
 
MQ2Autoforage

Users who are viewing this thread

Back
Top