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.

Search found 57 matches

by Branden
Sat Oct 04, 2008 3:14 pm
Forum: Scripting Help
Topic: Bot Setting Wrong Modes [Help] {Solved}
Replies: 15
Views: 8274

I'm also getting the same problem with putquick.
by Branden
Sat Oct 04, 2008 3:06 pm
Forum: Scripting Help
Topic: Global Vars [Help] {Solved}
Replies: 3
Views: 2633

I'm getting this error AFTER the fact that LockDown or UnLock has been called on.
by Branden
Sat Oct 04, 2008 2:55 pm
Forum: Scripting Help
Topic: Bot Setting Wrong Modes [Help] {Solved}
Replies: 15
Views: 8274

Bot Setting Wrong Modes [Help] {Solved}

Okay.. So it worked at first, till I had someone with chattr modes of h, and they were getting +qaohv... When they should have only gotten +hv... proc Up { nick host hand chan text } { if {[matchattr $hand n|n $chan]} { putserv "MODE $chan +qaohv $nick $nick $nick $nick $nick" } elseif {[m...
by Branden
Sat Oct 04, 2008 2:53 pm
Forum: Scripting Help
Topic: Global Vars [Help] {Solved}
Replies: 3
Views: 2633

Global Vars [Help] {Solved}

Hi there, I'm having an issue with vars, one proc is making the var, and I want another proc to be able to read that var. bind pub m|m "!LockDown" LockDown bind pub m|m "!UnLock" UnLock bind pubm - "*CONNECT*" CONNECTLOCKDOWN proc LockDown { nick host hand chan text } {...
by Branden
Sat Oct 04, 2008 11:20 am
Forum: Scripting Help
Topic: ForEach Channel [Help] {Solved}
Replies: 3
Views: 3068

ForEach Channel [Help] {Solved}

How can I script something that will happen on all channels that the bot is on.


Code: Select all

bind n|n "!MassMode" MassMode


proc MassMode { nick host hand chan text } {
	set Modes [lindex [split $text] 0]
	foreach ??????? {
		putquick "MODE $chan $Modes"
	}
}

by Branden
Sun Sep 28, 2008 3:21 pm
Forum: Script Requests
Topic: Extra Characters on StrictHost Script [Help]
Replies: 5
Views: 2697

To be honest, I didn't code this...

Could you please help me code it correctly?
by Branden
Sun Sep 28, 2008 12:02 pm
Forum: Script Requests
Topic: Extra Characters on StrictHost Script [Help]
Replies: 5
Views: 2697

Extra Characters on StrictHost Script [Help]

The script below adds an extra character at the beginning of the ident! proc stricthost {host chan} { set strict 0 if {[string index $host 0] == "!"} { set host [string range $host 1 end] set strict 1 } if {![string match "*@*" $host]} { set addhost "$host[getchanhost $host ...
by Branden
Sun Sep 28, 2008 10:32 am
Forum: Scripting Help
Topic: Autojoiner after 5 seconds! [Help]
Replies: 3
Views: 2964

Okay, I have a new problem.

The $User is underlined, and I don't know how to remove the underline in the variable. How can I remove it?
by Branden
Sat Sep 27, 2008 11:22 pm
Forum: Scripting Help
Topic: Autojoiner after 5 seconds! [Help]
Replies: 3
Views: 2964

Autojoiner after 5 seconds! [Help]

I would like my bot to sajoin a user after they connect to the network, but wait 5 seconds before it does it. bind pubm - "*CONNECT*" CONNECT proc CONNECT { nick host hand chan text } { set User [lindex [split $text] 3] if {$chan == "#4ct1v1ty"} { utimer 5 "putquick SAJOIN #...
by Branden
Fri Aug 15, 2008 8:13 am
Forum: Scripting Help
Topic: [HELP] IF ELSE with Vars {{Solved}}
Replies: 2
Views: 2328

Awesome, thank you very much!
by Branden
Fri Aug 15, 2008 7:26 am
Forum: Scripting Help
Topic: [HELP] IF ELSE with Vars {{Solved}}
Replies: 2
Views: 2328

[HELP] IF ELSE with Vars {{Solved}}

The script will only set +v on me no matter what. I want: if there is no nick provided, set +v on $nick, but if there is a nick provides, set +v on said nick. proc Voice { nick host hand chan text } { set User [lindex [split $text] 1] if {$User == ""} { pushmode $chan +v $nick } else { pus...
by Branden
Sat Aug 09, 2008 11:04 am
Forum: Script Support & Releases
Topic: incith:weather (2.8p) (Dec. 18th, 2008)
Replies: 311
Views: 458498

Tcl error [incith::weather::weather_handler]: invalid command name "clock"



Need help! Please!
by Branden
Sat Mar 29, 2008 5:09 pm
Forum: Script Requests
Topic: Relay Script.
Replies: 8
Views: 4882

Works great! THANK YOU! :D
by Branden
Sat Mar 29, 2008 4:01 pm
Forum: Script Requests
Topic: Relay Script.
Replies: 8
Views: 4882

Ok... I'm still getting the same error, and I've read the TCL commands file... I do not understand what I'm doing wrong... bind notc - * notice proc notice {nick uhost hand text {dest ""}} { global botnick; if {$dest == ""} {set dest $botnick} set themessage [lrange $text 0 end] ...
by Branden
Wed Mar 26, 2008 3:28 pm
Forum: Script Requests
Topic: Relay Script.
Replies: 8
Views: 4882

I tried putting what you put and it didn't work, then I tried this; proc notic { nick uhost handle text dest } { global botnick set themessage [lrange $text 0 end] if {$botnick == $dest} { putserv "PRIVMSG #Satanic :--- Recieved NOTICE --- $nick = $themessage" } } and that didn't work, and...