Greetings,
I'm trying to do an alias where i type cek <mobname>, MUSHClient would automatically do:
look <mob>
look 2.<mob>
look 3.<mob>
look 4.<mob>
And this is how my alias looks like:
<aliases>
<alias
match="^cek(.*)$"
enabled="y"
regexp="y"
sequence="100"
>
<send>look %1
look 2.%1
look 3.%1
look 4.%1</send>
</alias>
</aliases>
Altho, i got a bit of a problem, because the look 2.%1 would output as look 2.<space><mob>, and so on.
How do I remove the space? Thanks much
I'm trying to do an alias where i type cek <mobname>, MUSHClient would automatically do:
look <mob>
look 2.<mob>
look 3.<mob>
look 4.<mob>
And this is how my alias looks like:
<aliases>
<alias
match="^cek(.*)$"
enabled="y"
regexp="y"
sequence="100"
>
<send>look %1
look 2.%1
look 3.%1
look 4.%1</send>
</alias>
</aliases>
Altho, i got a bit of a problem, because the look 2.%1 would output as look 2.<space><mob>, and so on.
How do I remove the space? Thanks much