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

by jeffo
Wed Sep 07, 2011 1:46 pm
Forum: Script Support & Releases
Topic: UNOFFICIAL incith-google 2.1x (Nov30,2o12)
Replies: 855
Views: 1105711

it recently stopped working over here.. all i get is a time-out :/

or

Tcl error [incith::google::public_message]: can't read "link": no such variable
by jeffo
Fri Mar 11, 2011 7:57 pm
Forum: Scripting Help
Topic: 1st tcl script - text event trigger - help needed
Replies: 14
Views: 10058

ty, gonna try that
by jeffo
Fri Mar 11, 2011 7:42 pm
Forum: Scripting Help
Topic: 1st tcl script - text event trigger - help needed
Replies: 14
Views: 10058

if i do pubm on it, it'll do

<..> <trigger>
-...- enter a number pitiful human! (notice)

the whole time, and only that

yea, trying to learn on the trigger thing, different script tho
by jeffo
Fri Mar 11, 2011 5:56 pm
Forum: Scripting Help
Topic: 1st tcl script - text event trigger - help needed
Replies: 14
Views: 10058

yea, ty, but this pubm is messing the script up somehow, talking about the http://www.egghelp.org/cgi-bin/tcl_arch ... ad&id=1689 by oldsoldier here, dunno what is wrong there
by jeffo
Fri Mar 11, 2011 4:34 pm
Forum: Scripting Help
Topic: 1st tcl script - text event trigger - help needed
Replies: 14
Views: 10058

just another question for you pro's, would be cool if you could help me there. is it possible to set the trigger so that it will function (in this case) to not only "!game", but also to look in whole sentences like "why dont you type !game while we're at it" i've tried: bind pub ...
by jeffo
Thu Mar 03, 2011 2:22 pm
Forum: Scripting Help
Topic: 1st tcl script - text event trigger - help needed
Replies: 14
Views: 10058

ty, will try it this way then. i thought the "rand()" is calling the function, but [rand 7] looks much more handy aswell as the "switch" cmd..

kudos
by jeffo
Wed Mar 02, 2011 10:42 pm
Forum: Scripting Help
Topic: 1st tcl script - text event trigger - help needed
Replies: 14
Views: 10058

so... bind pubm o|* "!game" game proc game {nick host hand chan text} { if {[string equal -nocase "#channel:!game" $text]} {random_int} #or add set var text here and return $text or can i leave it at all?? } proc random_int { } { set myrand [expr int(rand() * 7)] return $myrand }...
by jeffo
Wed Mar 02, 2011 10:28 pm
Forum: Scripting Help
Topic: 1st tcl script - text event trigger - help needed
Replies: 14
Views: 10058

yea, will do. ty, was trying to get my mirc script into tcl and as i've said i've never worked with tcl scripts, so u are right. but calling it "spaghetticode" is veeeery nice of u :P
by jeffo
Wed Mar 02, 2011 9:41 pm
Forum: Scripting Help
Topic: 1st tcl script - text event trigger - help needed
Replies: 14
Views: 10058

1st tcl script - text event trigger - help needed

hi all, as u've seen in the topic it's my first tcl one (did mirc scripts already). here's my code so far: bind pubm o|* "!game" game proc game {nick uhost hand chan rest} { if {[string equal -nocase "!game" $text]} {random_int} proc random_int { } { global myrand set myrand [exp...