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 10 matches

by Dark_Aaron
Thu Mar 19, 2009 7:11 pm
Forum: Script Requests
Topic: mirc scripter new to tcl
Replies: 9
Views: 4888

proc TOPICDEFAULTS:proc { nick chan host handel text } { set $chan(topic) "Channel Topic" set $chan(divider) "||" set $chan(owner) "The topic" set $chan(verb) "has" set $chan(status) "been set." set $chan(header) "Topic:" set $chan(static)...
by Dark_Aaron
Thu Mar 19, 2009 5:06 pm
Forum: Script Requests
Topic: mirc scripter new to tcl
Replies: 9
Views: 4888

starr wrote:There are many scripts in the TCL Archive. Search topic and see which one is as close to what your looking for and use it for reference:)

I use MC_8's topic resync great script.
starr where do u live in TN i live in savannah
by Dark_Aaron
Tue Mar 17, 2009 10:52 pm
Forum: Script Requests
Topic: mirc scripter new to tcl
Replies: 9
Views: 4888

arfer wrote:No clue, I don't read mIRC.

Explain what it does in plain English.
its a multichan topic script that reads an ini and writes to 1
by Dark_Aaron
Mon Mar 16, 2009 10:47 pm
Forum: Scripting Help
Topic: remote join and part
Replies: 7
Views: 3975

Here's one I prepared earlier. Responds to pub or msg commands. Note that the binds are 'global owner' only. Always a good idea if you are doing stuff like this. bind MSG n join prcJoinMsgJoin bind PUB n !join prcJoinPubJoin bind MSG n part prcPartMsgPart bind PUB n !part prcPartPubPart proc prcJoi...
by Dark_Aaron
Mon Mar 16, 2009 9:32 pm
Forum: Scripting Help
Topic: remote join and part
Replies: 7
Views: 3975

so it should look like bind pub - "!join" join:proc bind pub - "!part" part:proc proc join:proc { nick host hand chan text } { if {[string equal -nocase $nick "Dark_aaron"]} { putserv "JOIN :$text" } } proc part:proc { nick host hand chan text } { if {[string...
by Dark_Aaron
Mon Mar 16, 2009 9:26 pm
Forum: Scripting Help
Topic: remote join and part
Replies: 7
Views: 3975

so it should look like bind pub - "!join" join:proc bind pub - "!part" part:proc proc join:proc { nick host hand chan text } { if {[string equal -nocase $nick "Dark_aaron"]} { putserv "JOIN :$text" } } proc part:proc { nick host hand chan text } { if {[string ...
by Dark_Aaron
Mon Mar 16, 2009 8:47 pm
Forum: Scripting Help
Topic: remote join and part
Replies: 7
Views: 3975

remote join and part

here is my first script bind pub - "!join" join:proc bind pub - "!part" part:proc proc join:proc { chan text nick } { global join part if {[$nick == Dark_Aaron]} { putserv "JOIN :$text" } } proc part:proc { chan text nick } { global part join if {[$nick == Dark_Aaron]]}...
by Dark_Aaron
Mon Mar 16, 2009 8:15 pm
Forum: Script Requests
Topic: mirc scripter new to tcl
Replies: 9
Views: 4888

Been there, done that, got the tee shirt (if you mean store in a file) http://forum.egghelp.org/viewtopic.php?t=16624 If you mean to a database proper then you need an addon such as the tcl interface for mysql. how would i go about making a multi chan topic script here is an mirc 1 i wrote on *:TEX...
by Dark_Aaron
Mon Mar 16, 2009 5:28 pm
Forum: Script Requests
Topic: mirc scripter new to tcl
Replies: 9
Views: 4888

mirc scripter new to tcl

hey im Aaron ive been scripting in mirc for a while

i want to know how to store stuff to a database oor ini or whatever

like in mirc theirs


Code: Select all

/writeini <file> <section> <item> <value>
by Dark_Aaron
Mon Mar 16, 2009 5:00 pm
Forum: Script Requests
Topic: !topic & !status commands
Replies: 6
Views: 4740

Ok now i have another question lol. Is there a way to make it so the commands only work on one channel? proc status:proc { nick host hand chan text } { global status topic if {[$nick isop $chan]} { if {[$chan == <yourchan>]} { set status $text putserv "TOPIC $chan :$topic / SL0RD $status"...