i can't figure out how to get my targeting system to do multiple commands, ie, i can get it to "chill <target>" but i can't get it do "stare <target> bleed"
here is my chill alias.
<aliases>
<alias
match="cc"
enabled="y"
group="Attacks"
send_to="12"
sequence="100"
>
<send>world.Send "chill " + world.GetVariable("Target")</send>
</alias>
</aliases>
then here is my jacked up stare alias.
<aliases>
<alias
match="sb"
enabled="y"
group="Attacks"
send_to="12"
sequence="100"
>
<send>world.Send "stare " + world.GetVariable("Target") + world.Send " bleed"</send>
</alias>
</aliases>
here is the error
Expected end of statement
Line in error:
world.Send "stare " + world.GetVariable("Target") + world.Send " bleed"
called by immediate execution.
lil help please
here is my chill alias.
<aliases>
<alias
match="cc"
enabled="y"
group="Attacks"
send_to="12"
sequence="100"
>
<send>world.Send "chill " + world.GetVariable("Target")</send>
</alias>
</aliases>
then here is my jacked up stare alias.
<aliases>
<alias
match="sb"
enabled="y"
group="Attacks"
send_to="12"
sequence="100"
>
<send>world.Send "stare " + world.GetVariable("Target") + world.Send " bleed"</send>
</alias>
</aliases>
here is the error
Expected end of statement
Line in error:
world.Send "stare " + world.GetVariable("Target") + world.Send " bleed"
called by immediate execution.
lil help please