mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: May 2003
Posts: 21
T
TRABEL Offline OP
Ameglian cow
OP Offline
Ameglian cow
T
Joined: May 2003
Posts: 21
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 ?

Joined: Dec 2002
Posts: 1,922
O
Hoopy frood
Offline
Hoopy frood
O
Joined: Dec 2002
Posts: 1,922
Can you please rephrase your question?

Joined: Sep 2003
Posts: 4,230
D
Hoopy frood
Offline
Hoopy frood
D
Joined: Sep 2003
Posts: 4,230
blue fish red orange triangle ground 4 and nature then if ?

Joined: May 2003
Posts: 21
T
TRABEL Offline OP
Ameglian cow
OP Offline
Ameglian cow
T
Joined: May 2003
Posts: 21
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

Last edited by TRABEL; 11/01/05 06:44 PM.
Joined: May 2003
Posts: 21
T
TRABEL Offline OP
Ameglian cow
OP Offline
Ameglian cow
T
Joined: May 2003
Posts: 21
anyone ?

Joined: Dec 2002
Posts: 1,922
O
Hoopy frood
Offline
Hoopy frood
O
Joined: Dec 2002
Posts: 1,922
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.

Joined: May 2003
Posts: 21
T
TRABEL Offline OP
Ameglian cow
OP Offline
Ameglian cow
T
Joined: May 2003
Posts: 21
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


Link Copied to Clipboard