what i want is to halt on status or not connected to server and whan i type / it will return or will not work so i can type /ns identify nick pw or /cs /j etc.
on *:input:*: { if ( $server ) && ( $left($1-,1) != / ) { msg $active $1- halt } elseif ( !$server ) { echo You are not connected!! halt } else { if ( $active == Status Window ) { echo -a This is the status window! halt } } }
on ^*:input:*: {
if ( $server ) && ( $left($1-,1) != / ) {
msg $active $1-
haltdef
}
else echo -a $iif(!$server,You are not connected!!,$iif($active == Status Window,This is the status window!))
}