CODE
#ALIAS t {
#VAR victim %1
enemy @victim
#ECHO {%crlf[VICTIM] - Targetting @victim}
}
#VAR victim %1
enemy @victim
#ECHO {%crlf[VICTIM] - Targetting @victim}
}
This code means that when you type 't', the system will read the first name that comes after your 't' command and will assign it to a variable(in this case 'victim'). Example would be 't lenneth'. The system will read the 't' command, and will assign the first thing that comes after it, which is 'lenneth', and puts the name in the @victim variable. In my code, I do two additional things as well: enemying them(so that rites will hit them too) and, for a personal touch, echoing my target back to me.
Now, if, say, you want to attack your target, make an alias that looks like this
CODE
#ALIAS dslt {
stand
dsl @victim
}
stand
dsl @victim
}
This code is for the alias DSLT, which will cause you to dsl whoever you targetted(read: assigned to 'victim' variable). The 'stand' command is a personal touch as well, as a pre-emptive check as to whether I was unknowingly proned or legbroken. Anyway.
Now, say you want to use firelash instead, do this:
CODE
#ALIAS cflash {
cast firelash at @victim
}
cast firelash at @victim
}
Pretty much does the same thing, only with firelash.
