Quote:
If I understand your question correctly, you're looking for a way to reassign $1- with the decrypted text. This can be done easily with the command /tokenize. Suppose you have an identifier called $decrypt() that decrypts encrypted text, your script will be looking something like this:

Code:
On *:text:*:#encrypted_channel:{
  tokenize 32 $decrypt($1-)

  ; From now on you can continue normally

  if ($1 == !command_1) {
    do stuff
  }
}


If you have further questions please start a new thread, because it's hard to keep track of replies to old threads in this forum.


hi
sorry for late replay .
is this $decrypt($1-) , should be any identifier with chan key or something ?
please explain smirk