Bug #5331
closed$target returns wrong value in some events
Start date:
05/31/2021
Due date:
% Done:
0%
Estimated time:
Operative System:
All
Regression:
No
Description
Is there a way to make this work on AdiIRC?
https://forums.mirc.com/ubbthreads.php/topics/252752/ZNC_Query_Buffer_Self-Message_
Thank you.
Updated by Per Amundsen 12 months ago
Don't see a reason why it shouldn't work, doesn't seem to do anything special.
Updated by psycho ™ 11 months ago
kr0n, the issue with this is the ON OPEN event...
if you're using ON ^*:OPEN:?:{ echo -a $target } -- it returns the current window name you have open (which is wrong.) if you're using ON *:OPEN:?:{ echo -a $target } -- if returns the nickname of the person who is sending you the msg. (which is also wrong)
the correct value here should be $me
using ON ^*:OPEN:?:{ echo -a $target } -- should return $me
Updated by Per Amundsen 11 months ago
- Tracker changed from Feature to Bug
- Subject changed from znc self-message mIRC script not working on AdiIRC to $target returns wrong value in some events
- Category set to Scripting
- Status changed from New to Resolved
- Assignee set to Per Amundsen
- Regression set to No
The correct value should actually be the target in "PRIVMSG <target> :text" which could be $me but also other nicks, I fixed that for next beta.