mIRC Home    About    Download    Register    News    Help

Print Thread
Page 1 of 2 1 2
#60578 16/11/03 02:20 PM
F
FMJ
FMJ
F
Hi, I'm coding a mirc script...
Anyone knows how to save users of a channel on a file .txt?
Thanks for help.

#60579 16/11/03 02:22 PM
Joined: Dec 2002
Posts: 3,015
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,015
Code:
alias savenicks {
  var %i = 1
  while ( $nick(#,%i) ) {
    write nicks.txt $ifmatch
    inc %i
  }
}

#60580 16/11/03 02:29 PM
F
FMJ
FMJ
F
sorry, but I'm at beginning... how to recall this "alias"?

#60581 16/11/03 02:33 PM
Joined: Dec 2002
Posts: 3,015
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,015
Put it in remotes and type /savenicks in a channel, then open nicks.txt from your mIRC directory.

#60582 16/11/03 02:35 PM
T
Tsunami
Tsunami
T
go to Tools -> Scripts Editor and put it in Remotes, or remove the word "alias" in the first line and put in in Aliases.

#60583 16/11/03 02:57 PM
F
FMJ
FMJ
F
Thanks, it works! but is it possible to do this every time I enter the channel, without write the command "/savenicks"?

#60584 16/11/03 03:07 PM
Joined: Feb 2003
Posts: 3,412
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,412
use a trigger when you join a channel: on $me:JOIN:#:{ savenick } in your remote section..

#60585 16/11/03 03:17 PM
F
FMJ
FMJ
F
sorry, but I don't understand... how to do this trigger?

#60586 16/11/03 03:26 PM
Joined: Feb 2003
Posts: 3,412
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,412
Add this in your remote section.. ALT + R in your mirc..

on $me:JOIN:#:{ savenick }

#60587 16/11/03 03:34 PM
Joined: Dec 2002
Posts: 3,015
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,015
That doesn't work.

on me:*:JOIN:#:{ savenicks }

#60588 16/11/03 03:42 PM
Joined: Feb 2003
Posts: 3,412
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,412
$me not me ..

#60589 16/11/03 03:45 PM
Joined: Dec 2002
Posts: 3,015
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,015
No. Try it. It doesn't work with a $, it does without.

#60590 16/11/03 03:48 PM
F
FMJ
FMJ
F
mmm it doesn't work... but the command "savenicks" must be placed in remote.ini or aliases.ini?

#60591 16/11/03 03:51 PM
F
FMJ
FMJ
F
No, it doesn't works with...
on me:*:JOIN:#:{ savenicks }
it save only my name...

Last edited by FMJ; 16/11/03 04:19 PM.
#60592 16/11/03 03:53 PM
Joined: Dec 2002
Posts: 3,015
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,015
I know why it doesn't work, it is because on JOIN the names list hasn't been recieved yet..

Code:
on me:*:JOIN:#:{
  set %join $+ # 1
}
raw 366:*:{
  if ( $eval(% $+ join $+ $2,2) ) {
    savenicks
    unset %join $+ $2
  }
}

It all goes in remotes.

#60593 16/11/03 03:54 PM
F
FMJ
FMJ
F
and if I would do enter the script in a list of channels saved in a file .txt? Exist a FOR cicle?
How can I do?

#60594 16/11/03 04:01 PM
F
FMJ
FMJ
F
it doesn't works...
Code:
on me:*:JOIN:#:{
  set %join $+ # 1
}
raw 366:*:{
  if ( $eval(% $+ join $+ $2,2) ) {
    savenicks    unset %join $+ $2
  }
}
 

Last edited by FMJ; 16/11/03 04:03 PM.
#60595 16/11/03 04:06 PM
Joined: Dec 2002
Posts: 3,015
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,015
You missed a carriage return after savenicks.

#60596 16/11/03 04:14 PM
F
FMJ
FMJ
F
in the text I put, but doesn't work too

#60597 16/11/03 04:21 PM
F
FMJ
FMJ
F
is not possible to make a pause before to execute command?

#60598 16/11/03 04:39 PM
Joined: Feb 2003
Posts: 3,412
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,412
Yes. use a time.. .timer 1 1 command

#60599 16/11/03 04:49 PM
F
FMJ
FMJ
F
you means
.timer 1 1 savenicks
?

#60600 16/11/03 04:55 PM
Joined: Feb 2003
Posts: 3,412
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,412
yes.. on the join command..

#60601 16/11/03 04:56 PM
F
FMJ
FMJ
F
I tried this but nothing...
on me:*:JOIN:#:{
.timer 1 1 savenicks
}

#60602 16/11/03 05:02 PM
Joined: Mar 2003
Posts: 1,256
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Mar 2003
Posts: 1,256
Then your mIRC is screwed. that code is solid.

#60603 16/11/03 05:05 PM
F
FMJ
FMJ
F
I have Mirc 6.03... I need to insert some routine or something?
Please, help me!

Last edited by FMJ; 16/11/03 05:07 PM.
#60604 16/11/03 05:11 PM
T
Tsunami
Tsunami
T
We helped you all we could. If the code doesn't work, it's something that you did wrong. Please tell us exactly what you did...

#60605 16/11/03 05:12 PM
Joined: Feb 2003
Posts: 3,412
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,412
make shure you dont have any on join events abow the one with the timer.. mirc takes the first one, then it halts.. so it wont get the one below that one..

#60606 16/11/03 05:17 PM
F
FMJ
FMJ
F
I put
Code:
 
on me:*:JOIN:#:{
  .timer 1 1 savenicks
}
 

on top of remote (ALT-R), then I put after
Code:
 
alias savenicks {
  var %i = 1
  while ( $nick(#,%i) ) {
    write nicks.txt $ifmatch
    inc %i
  }
}
 


is it right?

#60607 16/11/03 05:19 PM
Joined: Feb 2003
Posts: 3,412
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,412
hmm..

on me:*:JOIN:#:{
.timer 1 1 savenicks
}

i think you should remove the red stuff..

Last edited by sparta; 16/11/03 05:22 PM.
#60608 16/11/03 05:20 PM
F
FMJ
FMJ
F
but it doesn't work the "timer"... confused confused confused

I cancel the red but nothing... crazy

timer requires some code?

Last edited by FMJ; 16/11/03 05:28 PM.
#60609 16/11/03 05:38 PM
I
Iori
Iori
I
Try typing /!remote on and see if it works.

#60610 16/11/03 05:48 PM
F
FMJ
FMJ
F
it say "remote active (events...)" but nothing... shocked
I download Mirc 6.12 from this site, I insert the code in script.ini (remote) but nothing...
It's my pc that is crush? or is the code?

#60611 16/11/03 05:55 PM
I
Iori
Iori
I
You NEED that red code sparta told you to remove..

#60612 16/11/03 05:57 PM
T
theRat
theRat
T
Code:
on me:*:JOIN:#:{
  set %join $+ # 1
}
raw 366:*:{
  if ( $eval(% $+ join $+ $2,2) ) {
    savenicks $2
    unset %join $+ $2
  }
}
alias savenicks {
  var %i = 1
  while ( $nick($1,%i) ) {
    write nicks.txt $ifmatch
    inc %i
  }
}
  


add these to a new script file...

#60613 16/11/03 07:10 PM
F
FMJ
FMJ
F
finally, it works!! Unbelievable!! GREAT!! laugh

#60614 17/11/03 07:49 PM
F
FMJ
FMJ
F
only a problem, it saves my name too... each time...
is possible not to save?

#60615 01/12/03 10:30 AM
Joined: Feb 2003
Posts: 806
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Feb 2003
Posts: 806
I'm late, but yes.
Code:
alias savenicks {
  var %i = 1
  while ( $nick($1,%i) ) {
    if ($ifmatch != $me) { write nicks.txt $ifmatch }
    inc %i
  }
}

or..
Code:
alias savenicks {
  var %i = 1
  while ( $nick($1,%i) ) {
    write nicks.txt $ifmatch
    inc %i
  }
  write -ds $+ $me nicks.txt
}


You can choose any of both, but be sure to read the help file for both regardless of the one you choose.

cold #273493 09/07/25 11:36 AM
Joined: Mar 2024
Posts: 7
M
Nutrimatic drinks dispenser
Offline
Nutrimatic drinks dispenser
M
Joined: Mar 2024
Posts: 7
Is there changes between when this was written and mirc v7.22 ?

I put the code in however it seems to Not write anything .

Page 1 of 2 1 2

Link Copied to Clipboard