mIRC Home    About    Download    Register    News    Help

Print Thread
#193445 19/01/08 06:56 PM
Joined: Jan 2008
Posts: 44
J
Ameglian cow
OP Offline
Ameglian cow
J
Joined: Jan 2008
Posts: 44
Hi,
Im looking for a script which i have no clue.

Basically i want it to;

- When i say join all the bncs are in the jannel e.g. !Join #Channel Name

basically what it is i have 10 BNCS which i put in peoples channels , its really annoying going to control panel and doing it one-by-one. Im sure there is a script that can do this.
Cheers


#Plesh on QuaKenet
Jake Randall
Need help?
#Plesh - QuakeNet
Private Message Me Here!
Joined: Jan 2004
Posts: 509
L
Fjord artisan
Offline
Fjord artisan
L
Joined: Jan 2004
Posts: 509
on *:text:!join *:#:/join $2

Edit: Oh I know! /help on join.

Last edited by LostShadow; 19/01/08 09:41 PM.
Joined: Aug 2006
Posts: 44
D
Ameglian cow
Offline
Ameglian cow
D
Joined: Aug 2006
Posts: 44
oh i know... i could be less of a jerk with my responses -- not all of us are experts like you.

Joined: Jan 2004
Posts: 509
L
Fjord artisan
Offline
Fjord artisan
L
Joined: Jan 2004
Posts: 509
I'm just going to spit it out straight since you might be a newb.

Originally Posted By: DragonRyder
oh i know... i could be less of a jerk with my responses -- not all of us are experts like you.


I don't think I'll take offense to your statement since you only have 9 posts and might be a newb yourself.

The above person was trying to write a flood script.

Quote:
- When i say join all the bncs are in the jannel e.g. !Join #Channel Name


How do I know this is a malicious script?

Because of the below.

Quote:
basically what it is i have 10 BNCS which i put in peoples channels ,


Meaning, not his channels.

There was a reason that this topic had '0' replies and was half a page down. There was a reason no one responded to this thread. And I was nice enough to 'bump' it.

Hope I explained it to you.

Neal.

Joined: Jan 2008
Posts: 44
J
Ameglian cow
OP Offline
Ameglian cow
J
Joined: Jan 2008
Posts: 44
Its nothing like that. Its just idle BNC


#Plesh on QuaKenet
Jake Randall
Need help?
#Plesh - QuakeNet
Private Message Me Here!
Joined: Aug 2006
Posts: 19
R
Pikka bird
Offline
Pikka bird
R
Joined: Aug 2006
Posts: 19
BNC is generally used for malicous attacks or annoying ppl or just spamming. since BNC is a IRC proxy. it allows ppl access to channels that they are ip banned from.


ReaperIRC
Killgore Computers
Joined: Jan 2008
Posts: 16
J
Pikka bird
Offline
Pikka bird
J
Joined: Jan 2008
Posts: 16
if i understood what you were looking for then i could possibly help you hehe

Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
Code:
on *:text:*:#: {
  if ($nick == YourNickHere) {
    if ($1 == !join) && ($2 != $null) { join $2 | .notice YourNickHere Done. }
    else if ($1 == !joinall) && (%channels.to.join) && (!%jall) { join %channels.to.join | set -u30 %jall 1 | .notice YourNickHere done. }
  }
}

Edit the line where it says "YourNickHere" (3 places), and set the variable by the command:

/set %channels.to.join #channel,#channel1,#channel2 and so on.

Don't add to many channels tho, it can flood you out.

Here you can store the channels the bnc's should join if more then one, just store the channels in the %channels.to.join variable, the format are: %channels.to.join #channel,#channel1,#channel2,#channel3

!join #channel <- make it join the channel given

!joinall <- make it join all channels set in the variable

I also made it so you need to have the right nick to trigger the command, i could do it more secure by add your host instead of the nick, but since i don't know your host you maybe can fix that your self? If you need help with it, feel free to ask.


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }

Link Copied to Clipboard