chant.mac

Need help with a macro you are writing? Ask here!

Moderator: MacroQuest Developers

gonzoie
decaying skeleton
decaying skeleton
Posts: 6
Joined: Wed Sep 15, 2004 12:48 pm

chant.mac

Post by gonzoie » Mon Sep 20, 2004 12:18 pm

Hi im taking the original chant.mac bard kite macro and i would like to put a /camp after death, or an endmacro command after a zone. does anyone know how to do that. any help would be much appreciated.

User avatar
fearless
Not a Psychic
Posts: 2684
Joined: Wed Mar 10, 2004 3:52 pm

Post by fearless » Mon Sep 20, 2004 12:40 pm

Code: Select all

#Event Slain "#*#Returning to home point, please wait...#*#" 

Sub Event_Slain 
  /echo -(( Death detected, waiting 60 seconds and then quiting 
  /keypress forward 
  /keypress back 
  /delay 60s 
  /quit 
  /endmacro 
Reading . . . it's not just for me.

[url=http://www.catb.org/~esr/faqs/smart-questions.html]How To Ask Questions The Smart Way[/url]
[quote="Ccomp5950"]Fearless showed me the light, you too shall learn.[/quote]

BadBoy
a hill giant
a hill giant
Posts: 158
Joined: Thu Sep 05, 2002 11:53 am

Post by BadBoy » Mon Sep 20, 2004 6:28 pm

fearless wrote:

Code: Select all

#Event Slain "#*#Returning to home point, please wait...#*#" 

Sub Event_Slain 
  /echo -(( Death detected, waiting 60 seconds and then quiting 
  /keypress forward 
  /keypress back 
  /delay 60s 
  /quit 
  /endmacro 
May want to change that to:

Code: Select all

#Event Slain "#*#Returning to home point, please wait...#*#" 

Sub Event_Slain 
  /echo -(( Death detected, waiting 60 seconds and then quiting 
  /keypress forward 
  /keypress back 
  /delay 60s 
  /endmacro 
  /quit

User avatar
blueninja
a grimling bloodguard
a grimling bloodguard
Posts: 541
Joined: Thu Aug 28, 2003 7:03 am
Location: Göteborg, Sweden

Post by blueninja » Mon Sep 20, 2004 6:53 pm

The /quit line won't be of much use after /endmacro ;) ..