Everything is running, but can't tell if macro is running
Posted: Sun Jan 20, 2008 11:58 am
Hello,
My edited wiki page - http://www.macroquest2.com/wiki/index.php/Help_Macros - Added a note on making your macro echo a response when it's turned on. Needs a review.
Made it pretty far with the setup with MQ2. Compiled and running well. Can definetly tell it's running because NPC names are colored differently when MQ2 is running.
But, unable to retrieve a macro list from /listmacros. Even with /filter macros all , there is no response. and of course the INI file is poitning to the proper directory.
The issue above is not allowing a test run of the macro: botkill.mac
Here is the code for the macro:
Thanks for the help in advance for any troubleshooting ideas you have and a review of the above macro. 
My edited wiki page - http://www.macroquest2.com/wiki/index.php/Help_Macros - Added a note on making your macro echo a response when it's turned on. Needs a review.
Made it pretty far with the setup with MQ2. Compiled and running well. Can definetly tell it's running because NPC names are colored differently when MQ2 is running.
But, unable to retrieve a macro list from /listmacros. Even with /filter macros all , there is no response. and of course the INI file is poitning to the proper directory.
The issue above is not allowing a test run of the macro: botkill.mac
Here is the code for the macro:
Code: Select all
/echo macro ready
#event GotTell "Splatter tells you, 'kill'"
#event GotTell2 "Splatter tells you, 'follow'"
Sub Main
Sub Event_GotTell
/target Splatter
/assist
/attack on
/cast 1
/return
Sub Event_GotTell2
/target Splatter
/follow
/return