added area attack spell functionality

master
aardwolf-lunk 8 years ago committed by GitHub
parent d3fbb3c5fe
commit 212ad39411

@ -15,15 +15,19 @@
save_state="y" save_state="y"
date_written="2017-03-18 06:04:52" date_written="2017-03-18 06:04:52"
requires="4.98" requires="4.98"
version="1.0" version="1.1"
> >
<description trim="y"> <description trim="y">
<![CDATA[ <![CDATA[
as help ---> displays this help as help ---> displays this help
as * ---> sets attack spell to * as * ---> sets attack spell to *
ae * ---> sets attack spell to *
as ---> displays attack spell as ---> displays attack spell
ae ---> displays area attack spell
cs * ---> casts attack spell on mob * cs * ---> casts attack spell on mob *
cs ---> casts attack spell cs ---> casts attack spell
ce ---> casts area attack spell
]]> ]]>
</description> </description>
@ -82,6 +86,33 @@ ColourNote ("red", "blue", "Attack Spell set to : %1")</send>
enabled="y" enabled="y"
> >
</alias> </alias>
<alias
match="ae *"
enabled="y"
send_to="12"
sequence="100"
>
<send>SetVariable ("area_attack_spell", "%1")
ColourNote ("red", "blue", "Area Attack Spell set to : %1")</send>
</alias>
<alias
match="ce"
enabled="y"
expand_variables="y"
sequence="100"
>
<send>c '@area_attack_spell'</send>
</alias>
<alias
match="ae"
enabled="y"
expand_variables="y"
send_to="12"
sequence="100"
>
<send>ColourNote ("red", "blue", "Area Attack Spell : @area_attack_spell")</send>
</alias>
</aliases> </aliases>
<script> <script>

Loading…
Cancel
Save