mIRC Homepage
Posted By: TRABEL popups with blowfish encryp ? - 10/01/05 09:14 AM
hi
i wondering if remote scripts wont get what say in encript chan ?
on *:TEXT: ..... wont get any words i want from chan .
???
and if thats my prob .. how can i fix it ?
Posted By: Online Re: popups with blowfish encryp ? - 10/01/05 01:08 PM
Can you please rephrase your question?
Posted By: DaveC Re: popups with blowfish encryp ? - 10/01/05 11:07 PM
blue fish red orange triangle ground 4 and nature then if ?
Posted By: TRABEL Re: popups with blowfish encryp ? - 11/01/05 06:44 PM
hehe sorry
chan is using blowfish encryption , im using FISH for it.
im trying to get a word to trigger a command.
dont have any other problem on normal chans only on encrypted chans.

on *:TEXT:*:#: {
/msg .....
}
i have searched around but didnt find a solution ..
thx
Posted By: TRABEL Re: popups with blowfish encryp ? - 12/01/05 06:38 PM
anyone ?
Posted By: Online Re: popups with blowfish encryp ? - 12/01/05 07:58 PM
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.
Posted By: TRABEL Re: popups with blowfish encryp ? - 18/02/05 12:02 AM
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
© mIRC Discussion Forums