This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Is there script like that!?

Requests for complete scripts or modifications/fixes for scripts you didn't write. Response not guaranteed, and no thread bumping!
Post Reply
User avatar
pSyCh0
Voice
Posts: 28
Joined: Thu Nov 04, 2004 2:39 pm
Location: Sofia, Bulgaria
Contact:

Is there script like that!?

Post by pSyCh0 »

I have for example: nick1 nick2 nick3 nick4
I want my bot to identify these nicks every 5 minutes to change nick1 with nick2 the nick2 with nick3 :L)
has anyone know script like that?!
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

To what end? Ban evasion? Nick chasing?
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
I
IRCNick
Halfop
Posts: 64
Joined: Wed Oct 12, 2005 9:43 pm
Location: Germany
Contact:

Post by IRCNick »

Use the search funktion of the forum! There is exactly the script that you need.
User avatar
pSyCh0
Voice
Posts: 28
Joined: Thu Nov 04, 2004 2:39 pm
Location: Sofia, Bulgaria
Contact:

Post by pSyCh0 »

mm i tried but ... i cant found anything .. pls give me a link.
10x in advance.
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

Alchera wrote:To what end? Ban evasion? Nick chasing?
it's usually called "nick jupe"; of course, this situation is a bit different, I'd guess that guy wants to hold and prevent stolen nicks from expiring

and yes, there must be some script for this, since my stolen DALnet nick gets identified on pretty regular basis :) I wonder what they need it for, I'd have sold it on eBay already hehe
connection, sharing, dcc problems? click <here>
before asking for scripting help, read <this>
use

Code: Select all

 tag when posting logs, code
User avatar
pSyCh0
Voice
Posts: 28
Joined: Thu Nov 04, 2004 2:39 pm
Location: Sofia, Bulgaria
Contact:

Post by pSyCh0 »

not stolen just my nicks.
I
IRCNick
Halfop
Posts: 64
Joined: Wed Oct 12, 2005 9:43 pm
Location: Germany
Contact:

Post by IRCNick »

Code: Select all

# change nick after how many mins ?
set nchange(mins) "60"

# your nicks:
set nchange(nicks) "Nick1 Nick2 Nick3"

# script goes here:

foreach ntimer [timers] {
 if {[string match -nocase "*change:nick*" "[lindex $ntimer 1]"]} {
  killtimer [lindex $ntimer 2]
 }
}
timer $nchange(mins) [list change:nick $nchange(nicks) $nchange(mins)]
set nchange(length) 0

proc change:nick {nicks mins} {
global nick nchange
incr nchange(length)
if {"$nchange(length)" > "[llength $nicks]"} { set nchange(length) 1 }
set nick "[lindex $nicks [expr {$nchange(length)-1}]]"
timer $mins [list change:nick $nicks $mins]
}
User avatar
pSyCh0
Voice
Posts: 28
Joined: Thu Nov 04, 2004 2:39 pm
Location: Sofia, Bulgaria
Contact:

Post by pSyCh0 »

10x ;)
Post Reply