Actions
Bug #2756
closedOverloaded aliases with groups do not work as they do on mIRC
Start date:
06/14/2016
Due date:
% Done:
0%
Estimated time:
Operative System:
All
Regression:
No
Description
[code]alias test {
.disable #grouptest
;; this does not echo "group disabled" even though it should
grouptest
.enable #grouptest
grouptest
}
#grouptest off
alias grouptest {
echo -a Group Enabled
}
#grouptest end
alias grouptest {
echo -a Group Disabled
}[/code]
In mIRC the following gets echoed to the active window
[code]Group Disabled
Group Enabled[/code]
In AdiIRC the following gets echoed to the active window
[code]Group Enabled[/code]
Updated by S Reject over 8 years ago
Overloaded aliases within groups do not work as they do on mIRC
alias test {
.disable #grouptest
grouptest
.enable #grouptest
grouptest
}
#grouptest off
alias grouptest {
echo -a Group Enabled
}
#grouptest end
alias grouptest {
echo -a Group Disabled
}
In mIRC the following gets echoed to the active window
Group Disabled
Group Enabled
In AdiIRC the following gets echoed to the active window
Group Enabled
Updated by Per Amundsen over 8 years ago
- Category set to Scripting
- Status changed from New to Resolved
- Assignee set to Per Amundsen
- Target version set to 2.4
Actions