Page 1 of 1

A more simpler boxing nuke macro?

Posted: Wed Apr 09, 2008 10:24 am
by derekj54
all of the macros ive found seem to want to play the char for me. i want to box a wizard and all i want is for when i say something specific on my main char in group then it will cast a nuke once. and does this work with several instances of eq on the same compuer? like if i have 3 wizards going would they all do the same thing?

Posted: Wed Apr 09, 2008 10:32 am
by G1zm0|)-->
Non s?r. Autant que je sais que vous devez avoir un autre programme install? sur votre ordinateur re?oivent afin de cas multiples dirig?s de MQ. Je n'ai jamais vraiment fait rien comme ?a auparavant. Bonne chance bien que.

:lol:

Posted: Wed Apr 09, 2008 11:00 am
by derekj54
i dont understand what you said, but how about a macro that assists a certain person then casts the spell, i dont need variables for the person sending the message since it will always be the same

Posted: Wed Apr 09, 2008 11:14 am
by pw
Try this as a starting point. Completely untested:

Code: Select all

#event NUKE "#*#nuke now#*#"

Sub Main 
   /echo Waiting for instruction to nuke
   :Start 
   /doevents 
   /delay 3s

   /goto :Start 
    
/return 

    
Sub Event_NUKE
   /cast "somenukespell"
/return


Re: A more simpler boxing nuke macro?

Posted: Wed Apr 09, 2008 11:34 am
by G1zm0|)-->
derekj54 wrote: and does this work with several instances of eq on the same compuer? like if i have 3 wizards going would they all do the same thing?
As far as I know you cannot run multiple instances of mq on the same pc without some other third party software like eqwindows or something like that. I've never really tried. I have three computers at home and never found the need to do it that way.

Posted: Wed Apr 09, 2008 11:49 am
by mystikule
I'm pretty sure I just got dumber...

Posted: Wed Apr 09, 2008 11:57 am
by derekj54
i have 2 computers both use up to 3 instances of eq, you dont need eq windows to do it anymore you can use straight eq client now days

Posted: Wed Apr 09, 2008 12:02 pm
by derekj54
i play eqemu, i just dont understand this language really, i am by no means familiar with many languages but i have some perl experiance, i have searched the forums all morning and i really cant find anything like i want

Posted: Wed Apr 09, 2008 12:50 pm
by derekj54
i just want when i say "nuke" in group the wizard will /assist mychar name and cast the spell or simply just press 1 then press 2 since i have an assist button and a nuke button on the hotbar already

Posted: Wed Apr 09, 2008 1:15 pm
by Clops
Could try this, haven't tested.

Code: Select all

#include spell_routines.inc  
#Chat  Group 

/declare SpellOne string outer Uber Nuke Rk. II

Sub Main
:loop
/goto :loop
/return

Sub Event_Chat(string ChatType,string Master,string ChatText) 
   /if (${ChatText.Equal[nuke]}) { 
      /assist ${Master} 
      /delay 5 
      /if (${Target.Type.NotEqual[NPC]}) { 
         /assist ${Master} 
         /delay 5 ${Target.Type.Equal[NPC]} 
      } 
	      /if (${Target.Type.Equal[NPC]} && ${Target.ID} && ${Spell[${SpellOne}].Range}>=${Target.Range}) { 
	         /if (${Me.SpellReady[${SpellOne}]}) { 
	            /g Casting ${SpellOne} on ${Target.CleanName} 
	            /call Cast "${SpellOne}" spell 3s 
	         } else { 
	           /tell ${Master} Spell is not Ready 
	         } 
	      }
      } 

/return

Re: A more simpler boxing nuke macro?

Posted: Mon Jan 12, 2026 2:51 pm
by xyilla

Re: A more simpler boxing nuke macro?

Posted: Mon Jan 12, 2026 2:52 pm
by xyilla