Ok. Hello.
I've a long list (About 300) of spells/skills that I want to alias out.
Heres an example:
---
---
Now that's just dandy since I like to cast armor on myself.
As most ROM based muds do, my muds "cast" function takes in 2 arguments, the spell, and the target. With all protection spells the default is yourself when no target argument is supplied. With other types of spells the defaults vary from random portals to attack type spells hitting only the player/mobile that you're in combat with.
Here is my problem; I want a single alias for a spell without an argument (EG. cast armor) and one with an argument (EG. cast armor nick).
I find matching on MUSH to be quite different than what I'm used to, which is wintin. On wintin, if I wanted to have this same alias it would be #alias {armor}{c armor}.
Wintin would match me entering "armor" so they would send "c armor" to the mud. However, if I entered
"armor stupid dumb troll with big boots"
it would send
"c armor stupid dumb troll with big boots"
Can anybody help me out?
I've a long list (About 300) of spells/skills that I want to alias out.
Heres an example:
---
<alias
match="armor"
enabled="y">
<send>c armor</send>
</alias>
---
Now that's just dandy since I like to cast armor on myself.
As most ROM based muds do, my muds "cast" function takes in 2 arguments, the spell, and the target. With all protection spells the default is yourself when no target argument is supplied. With other types of spells the defaults vary from random portals to attack type spells hitting only the player/mobile that you're in combat with.
Here is my problem; I want a single alias for a spell without an argument (EG. cast armor) and one with an argument (EG. cast armor nick).
I find matching on MUSH to be quite different than what I'm used to, which is wintin. On wintin, if I wanted to have this same alias it would be #alias {armor}{c armor}.
Wintin would match me entering "armor" so they would send "c armor" to the mud. However, if I entered
"armor stupid dumb troll with big boots"
it would send
"c armor stupid dumb troll with big boots"
Can anybody help me out?