Posted By: vinifera
bypass $os - 28/02/13 05:09 PM
is there any way of bypassing $os on older mirc versions (6.1x, 6.2x)
Posted By: Loki12583
Re: bypass $os - 28/02/13 07:00 PM
Any built-in alias can be overwritten just by defining your own.
Posted By: vinifera
Re: bypass $os - 28/02/13 07:03 PM
not all
when i did
alias os { return bla }
it still bypasses it
Posted By: Loki12583
Re: bypass $os - 28/02/13 07:06 PM
Your're right, looks like the answer is 'no' then.
Posted By: Wims
Re: bypass $os - 28/02/13 07:11 PM
$identifier always call the built-in identifier if it exists, otherwise the custom identifier if it exists, $null otherwise.
$/identifier always call the custom identifier if it exists, $null otherwise.
$~identifier always call the built-in identifier if it exists, $null otherwise.
In any case, overriding a built in command/identifier is not a good idea, make $_os and use that if you can.
Posted By: KindOne
Re: bypass $os - 28/02/13 07:12 PM
As far as the /help goes.. No.
/help Custom Identifiers
Note: Built-in identifiers of the same name have priority.
Create your own.