kiriel.gifKiriel D'Sol

Macros

Macros Available:

Rescue Sunstone Macro

To use, copy and paste the following text into your Clan Lord macros file. Feel free to customize for your own use as needed.


// Rescue sunstone macros v1.0 // Notify kiriel@windsofdawn.org if you find a mistake or want to suggest an improvement // Chaining exile to town, Usage: ctt exilename "ctt" "/think Chaining " @text " to town\r" // Going to get exile, Usage: gtg exilename "gtg" "/think Going to get " @text "\r" // Going to look for exile, Usage: gtl exilename "gtl" "/think Going to look for " @text "\r" // Getting exile, Usage: getg exilename "getg" "/think Getting " @text "\r" // Healing exile, Usage: hlg exilename "hlg" "/think Healing " @text "\r" // Send help request for exilename when you know what they fell to. Usage: eft exilename fallento "eft" { set nbw @text.num_words if nbw < 2 message "Need the exilename then what they are fallen to" else "/think " @text.word[0] " is fallen to " set ij 1 label marque @text.word[ij] set ij + 1 if ij < nbw " " goto marque end if ". Can anyone assist?\r" end if } // Send help request for exilename when you know where they are. Usage: enh exilename fallento "enh" { set nbw @text.num_words if nbw < 2 message "Need the exilename then where they are fallen" else "/think " @text.word[0] " is fallen in " set ij 1 label marque @text.word[ij] set ij + 1 if ij < nbw " " goto marque end if ". Can anyone assist?\r" end if } // Request toggle for location. Usage: tl exilename location "tl" { set nbw @text.num_words if nbw < 2 message "Need the exilename then the location" else "/thinkto " @text.word[0] . " toggle if you are in " set ij 1 label marque @text.word[ij] set ij + 1 if ij < nbw " " goto marque end if "\r" end if } // Request toggle for help. Usage: tfh exilename "tfh" { if @text != "" "/thinkto " @text " toggle if you need help\r" else message "Must specify exilename" end if } // Request share for help. Usage: sfh exilename "sfh" { if @text != "" "/thinkto " @text " share me if you need help\r" else message "Must specify exilename" end if } // Request toggle for direction from town. Usage: tdir exilename direction "tdir" { set nbw @text.num_words if nbw == 2 "/thinkto " @text.word[0] " toggle if you are " @text.word[1] " of town\r" else message "Must specify exilename then direction" end if } // Toggle macro // Will unshare then share the specified person // Usage: tog exilename "tog" { if @text != "" "/unshare " @text "\r" pause 13 "/share " @text "\r" end if }