Regarding scripting and aliases, does anyone know if putting a script in a subroutine, then calling it from an alias or putting the script in the alias is faster? For example..
Would this:
or this:
Be faster? Or does it not even matter? Thanks for your help on this, I don't exactly have a way to time it.. just wondering if anyone has any opinions.
Would this:
Quote:
Sub En_Aco
World.send "envenom " & dirk & " with aconite"
End Sub
Sub En_Cur
World.send "envenom " & dirk & " with curare"
End Sub
Sub Illusion_flay (a,b,wildcard)
World.Send "conjure illusion Gore flays the sileris coating from you. You apply a sileris berry to yourself."
End Sub
<aliases>
<alias
match="dca"
enabled="y"
group="attacks"
send_to="12"
sequence="100"
>
<send>en_aco
en_cur
World.Send "dstab " & target
illusion_flay</send>
</alias>or this:
Quote:
en_aco
en_cur
World.Send "dstab " & target
illusion_flay
Sub En_Aco
World.send "envenom " & dirk & " with aconite"
End Sub
Sub En_Cur
World.send "envenom " & dirk & " with curare"
End Sub
Sub Illusion_flay (a,b,wildcard)
World.Send "conjure illusion Gore flays the sileris coating from you. You apply a sileris berry to yourself."
End Sub
Sub dstab_cur_aco (a,b,wildcard)
en_aco
en_cur
World.Send "dstab " & target
illusion_flay
End Sub
<aliases>
<alias
script="dstab_cur_aco"
match="dca"
enabled="y"
group="attacks"
sequence="100"
>
</alias>
</aliases>Be faster? Or does it not even matter? Thanks for your help on this, I don't exactly have a way to time it.. just wondering if anyone has any opinions.