mIRC Home    About    Download    Register    News    Help

Print Thread
#19290 15/04/03 01:44 AM
Joined: Apr 2003
Posts: 6
S
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
S
Joined: Apr 2003
Posts: 6
i want to know the comand for the remotes to put on my mIRC bot , that could link two servers... this is, when a person speaks in one server, the ppl in another server could read what the other person as said.... please , send me the code ...

#19291 15/04/03 01:58 AM
Joined: Jan 2003
Posts: 3,012
Hoopy frood
Offline
Hoopy frood
Joined: Jan 2003
Posts: 3,012
Code:
on 1:TEXT:*:#: {
  if ($server(0) > 1) {
    /set -u0 %serv $server
    /set -u0 %a 1
    while (%a <= $server(0)) { 
      /scon %a
      if ($server != %serv) {
        /amsg ( $+ $asctime(hh:nn:ss) $+ )( $+ $nick $+ )( $+ %serv $+ ): $1-
      }
      /inc -u0 %a
    }
  }
}


-KingTomato
#19292 15/04/03 02:08 AM
Joined: Apr 2003
Posts: 6
S
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
S
Joined: Apr 2003
Posts: 6
how should i use this? how does it work ?
waht modifications shoul i do to put this working in ptnet and ptlink at the same time ? please respond...
tnkx

#19293 15/04/03 02:21 AM
Joined: Jan 2003
Posts: 3,012
Hoopy frood
Offline
Hoopy frood
Joined: Jan 2003
Posts: 3,012
Goes in the mirc remotes window. Basically, takes text said on a server, and sends it to all the channels of every other server your connected on. If you want it to send to on specific channel, change /amsg to "/msg #<my_channel>".


-KingTomato
#19294 15/04/03 02:38 AM
Joined: Apr 2003
Posts: 6
S
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
S
Joined: Apr 2003
Posts: 6
i've entered in a server that is /server gameover.ptlink.net , and joined a chan #everlasting , it is registred... and in /server oninet.ptnet.org , in the same chan (#everlasting), but, the comand isn't working... please explain it to me in a simple and comprehensible language... cause i'm new at this.. tnkx for the help...

#19295 15/04/03 03:27 AM
Joined: Apr 2003
Posts: 6
S
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
S
Joined: Apr 2003
Posts: 6
there's a problem... when someone part's or join's the chanel... the bot does sais that the nick has parted or joined the chanel... how should I do to fix the problem???

#19296 15/04/03 02:33 PM
Joined: Jan 2003
Posts: 3,012
Hoopy frood
Offline
Hoopy frood
Joined: Jan 2003
Posts: 3,012
Code:
on 1:TEXT:*:#: {
  if ($server(0) &gt; 1) {
    /set -u0 %serv $server
    /set -u0 %a 1
    while (%a &lt;= $server(0)) {
       /scon %a
      if ($server != %serv) {
        /amsg ( $+ $asctime(hh:nn:ss) $+ )( $+ $nick $+ )( $+ %serv $+ ): $1-
      }
      /inc -u0 %a
    }
  }
}

on 1:JOIN:#: {
  if ($server(0) &gt; 1) {
    /set -u0 %serv $server
    /set -u0 %a 1
    while (%a &lt;= $server(0)) {
       /scon %a
      if ($server != %serv) {
        /amsg ( $+ $asctime(hh:nn:ss) $+ ) JOIN: ( $+ $nick $+ )( $+ %serv $+ )
      }
      /inc -u0 %a
    }
  }
}

on 1:PART:#: {
  if ($server(0) &gt; 1) {
    /set -u0 %serv $server
    /set -u0 %a 1
    while (%a &lt;= $server(0)) {
       /scon %a
      if ($server != %serv) {
        /amsg ( $+ $asctime(hh:nn:ss) $+ ) PART: ( $+ $nick $+ )( $+ %serv $+ )
      }
      /inc -u0 %a
    }
  }
}
on 1:QUIT: {
  if ($server(0) &gt; 1) {
    /set -u0 %serv $server
    /set -u0 %a 1
    while (%a &lt;= $server(0)) {
       /scon %a
      if ($server != %serv) {
        /amsg ( $+ $asctime(hh:nn:ss) $+ ) QUIT: ( $+ $nick $+ )( $+ %serv $+ ) ( $+ $1- $+ )
      }
      /inc -u0 %a
    }
  }
}


-KingTomato
#19297 15/04/03 02:37 PM
Joined: Jan 2003
Posts: 3,012
Hoopy frood
Offline
Hoopy frood
Joined: Jan 2003
Posts: 3,012
Here's how it works...

As you described, you are idling on two channels. What I did here was make text from one server appear on the other server. Say you are on server 1 on channels #a, #b, #c and on server2 on channels #d, #e, #f. Now, if a user talks in channel #b, then the text that user said is then messaged to the second netowrk on channels #d, #e, and #f. Same goes with joins, parts, and also quits.

Hopefully I understood your request properly, and filled it. if I didn't please try to explain with an example so I may better comprehend what your asking. grin


-KingTomato
#19298 15/04/03 09:46 PM
Joined: Dec 2002
Posts: 2,809
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 2,809
Prolly also gonna wanna add an ON ACTION to that.

#19299 09/07/03 12:11 AM
Joined: Apr 2003
Posts: 6
S
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
S
Joined: Apr 2003
Posts: 6
the code you gave me before.. doesn't work.. i can't make it work.. i 've put it in a seppareted remote... but it doesn't work...

the channel i'm trying to link is #a_mafia-somos_nos
and te server are novis.ptnet.org an gameover.ptlink.net

i hope you can helpme... Tnkx

#19300 09/07/03 06:35 AM
Joined: Dec 2002
Posts: 3,127
P
Hoopy frood
Offline
Hoopy frood
P
Joined: Dec 2002
Posts: 3,127
it isnt necessary to click the notify a moderator button when you post, it wont get you help any faster


ParaBrat @#mIRCAide DALnet
#19301 09/07/03 11:14 AM
Joined: Apr 2003
Posts: 210
S
Fjord artisan
Offline
Fjord artisan
S
Joined: Apr 2003
Posts: 210
Where is this "notify a moderator" button anyway?

#19302 09/07/03 11:50 AM
Joined: Dec 2002
Posts: 2,985
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2002
Posts: 2,985
Third from the left right under your message. I never use it though cos I'm not a grasser. :tongue:

#19303 09/07/03 07:01 PM
Joined: Feb 2003
Posts: 2,812
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2003
Posts: 2,812
Ok, now what's a grasser?

(before long, Aussies will have written their own language)


Well. At least I won lunch.
Good philosophy, see good in bad, I like!
#19304 09/07/03 07:10 PM
Joined: Dec 2002
Posts: 3,138
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,138
Grasser = someone who tells on people, aka a 'tattletale'

#19305 09/07/03 07:37 PM
Joined: Feb 2003
Posts: 2,812
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2003
Posts: 2,812
I'm interested in where these uses come from, eg the history behind the word. Is there some playground setting involving a tattletale who gets a fist full of grass stuffed in his mouth, or some childhood story with a moral involving tattlers?

Someone should really document these if this are the case.

- Raccoon


Well. At least I won lunch.
Good philosophy, see good in bad, I like!
#19306 09/07/03 07:50 PM
Joined: Dec 2002
Posts: 2,985
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2002
Posts: 2,985
It's not a uniquely Australian expression though, it's well-known in all English speaking countries as far as I am aware.

#19307 09/07/03 11:42 PM
Joined: Feb 2003
Posts: 2,812
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2003
Posts: 2,812
East of the Atlantic apparently, definitely not in the states.


Well. At least I won lunch.
Good philosophy, see good in bad, I like!
#19308 10/07/03 12:04 AM
Joined: Jan 2003
Posts: 3,012
Hoopy frood
Offline
Hoopy frood
Joined: Jan 2003
Posts: 3,012
sorry, never heard of it here, in new hampshire usa. Maybe im just not "hip with the times" >:\ Must be "new fangled termonology those dang kids are always inventin"


-KingTomato

Link Copied to Clipboard