mIRC Home    About    Download    Register    News    Help

Print Thread
#193445 19/01/08 06:56 PM
J
jakerandall
jakerandall
J
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

#193485 19/01/08 09:40 PM
L
LostShadow
LostShadow
L
on *:text:!join *:#:/join $2

Edit: Oh I know! /help on join.

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

L
LostShadow
LostShadow
L
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.

#193523 20/01/08 04:36 PM
J
jakerandall
jakerandall
J
Its nothing like that. Its just idle BNC

#193648 23/01/08 02:25 AM
R
Reaper
Reaper
R
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.

#193649 23/01/08 02:42 AM
J
Joeyexa
Joeyexa
J
if i understood what you were looking for then i could possibly help you hehe

#193651 23/01/08 10:44 AM
Joined: Feb 2003
Posts: 3,412
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,412
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.


Link Copied to Clipboard