Just out of curiosity, how would this work then?
I have 2 script files loaded.
Say I have an alias in file myscript.ini:
alias myalias {
echo -a Hello this is your alias!
}
and this in file otherscript.ini:
on *:JOIN:*:{
/myalias
}
alias -l myalias {
echo -a Hello this is your other alias
}
Which would the on JOIN event use?
Would it automatically look in the same script file first and if there's a local alias, use that, if not, look in other script files?
If this is the case, how would I get it to use the myalias alias from myscript.ini instead of the local alias?
Don't know if I've explained this properly, but thanks in advance to anyone (if anyone does!) that explains it