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

by terryd
Sun Jan 01, 2006 1:11 pm
Forum: Scripting Help
Topic: User Interaction example
Replies: 5
Views: 7961

User Interaction example

I have been looking for an example of catching user input.
For example it !test
what is your name
The user replies joe
How to catch that reply which i could then write to a file or what ever.
Just and example or a pointer would be most helpfull

Cheers Terry.
by terryd
Tue Dec 27, 2005 9:31 pm
Forum: Scripting Help
Topic: stuck with On join
Replies: 6
Views: 9148

On join problems

Cheers for that all is now well. To get it going i had to put it in a seperate file for some reason.
I have like half a dozen other script sections in my main script file i thought that was ok to do and they all work fine.

Cheers for your time and help Alchera
:)
by terryd
Tue Dec 27, 2005 8:14 pm
Forum: Scripting Help
Topic: stuck with On join
Replies: 6
Views: 9148

Stuck on join

Well i tried your snippet in its complete form and tried to tweak it but to no avail. Today is me first day at this so i must be doing some thing really silly some where :) My other snippets i have been fiddling with just basic stuff to get the feel of things like bind pub - !os pub:os proc pub:os {...
by terryd
Tue Dec 27, 2005 7:30 pm
Forum: Scripting Help
Topic: stuck with On join
Replies: 6
Views: 9148

Stuck with on join

I now have

bind join - * test

proc test {nick uhost handle chan } {
putserv "PRIVMSG $chan : $nick :Hello there!"
}

I have also tried a few other ways. The doc you pointed out i have read a dozen time today. But thank you any way
by terryd
Tue Dec 27, 2005 6:19 pm
Forum: Scripting Help
Topic: stuck with On join
Replies: 6
Views: 9148

stuck with On join

I have bind join - * proc_join proc proc_join {nick chan text} { putserv "PRIVMSG $chan :$nick:For info on server do !help" } I have tried a few variations and im still reading the docs now. But when i join the channle with the bot no joy all my other things work fine like 1help for exampl...