Type this command from any editbox in any window:
[color:840017]//echo -ati2 * Is /say an alias? $iif($isalias(say),Yes - in the file $isalias(say).fname,No - that is not the problem.)[/color]
I rather suspect that you will find you have an alias gone awry, such as in the following examples.
- [code]
; PROBLEM: Alias name got deleted in a remote alias definition
alias say Hi $1- $+ ! Welcome to $chan $+ !!
; FIX: alias [color:red]greet say Hi $1- $+ ! Welcome to $chan $+ !![/color]
; PROBLEM: Alias name got deleted in a normal alias definition
say Hi $1- $+ ! Welcome to $chan $+ !!
; FIX: [color:red]greet say Hi $1- $+ ! Welcome to $chan $+ !![/color]
; PROBLEM: A new script you have loaded includes a badly written custom /say alias
alias say .msg $active $1-
; FIX: Ask the author of that script to fix it[/color]
If your problem doesn't fit one of these fairly easily fixed solutions and that command I gave you at the top returns Yes, go into the filename it tells you and simply rename the alias
say alias to something else - such as
say.broke - and then try your popups again.
If all of that fails, then go into your popups and edit them such that they do not need to use
say at all, as was suggested earlier, changing
say to
msg $active:
- Greet $1: msg $active Hi there $1 - I've missed you terribly.