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"
date_written="2017-03-18 06:04:52"
requires="4.98"
version="1.0"
version="1.1"
>
<description trim="y">
<![CDATA[
as help ---> displays this help
as * ---> sets attack spell to *
ae * ---> sets attack spell to *
as ---> displays attack spell
ae ---> displays area attack spell
cs * ---> casts attack spell on mob *
cs ---> casts attack spell
ce ---> casts area attack spell
]]>
</description>
@ -82,6 +86,33 @@ ColourNote ("red", "blue", "Attack Spell set to : %1")</send>
enabled="y"
>
</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>
<script>

Loading…
Cancel
Save