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

by Draknon
Sat Apr 07, 2018 5:21 am
Forum: Scripting Help
Topic: Did I do this wrong?
Replies: 4
Views: 5508

Did I do this wrong?

I wrote this and thought it would work... bind join - "{vivi}D!*@*" vi_join proc vi_join {nick uhost handle chan text} { putserv "privmsg $chan :\001ACTION watches as $nick enters and goes over and whispers in Draknon's ear... 5Sir, your baby girl is here. 3Welcome home pixie princess...
by Draknon
Sat Apr 07, 2018 12:16 am
Forum: Script Requests
Topic: Trying to go from mIRC to tcl
Replies: 12
Views: 9726

1: is there a way to make that an action like using a /me?
Answered from another post.
putnow "privmsg $chan :\001ACTION goes ..yadda yadda ...
is the fix
2: can it be linked to a single person? how?
I still need this answer
by Draknon
Fri Apr 06, 2018 11:51 pm
Forum: Scripting Help
Topic: how do I do an action with tcl?
Replies: 6
Views: 7141

Re: how do I do an action with tcl?

Thanks a lot, I couldn't find that anywhere
by Draknon
Fri Apr 06, 2018 8:20 pm
Forum: Scripting Help
Topic: how do I do an action with tcl?
Replies: 6
Views: 7141

how do I do an action with tcl?

the normal IRC action command is /me .. well..

Code: Select all

 /me asks for help 
how do I make that in tcl?

Code: Select all

privmsg $chan
is not correct as it is just a statement.

And I know I didn't write out the whole thing but privmsg is wrong anyway
by Draknon
Fri Apr 06, 2018 7:50 pm
Forum: Script Support & Releases
Topic: Script doesn't work... why?
Replies: 11
Views: 10792

well, I got it working, now if I just knew what I did.. but it's going now.. thanks for all your help..
by Draknon
Fri Apr 06, 2018 6:17 pm
Forum: Script Requests
Topic: Trying to go from mIRC to tcl
Replies: 12
Views: 9726

ok, so 2 questions.

1: is there a way to make that an action like using a /me?

2 can it be linked to a single person? how?
by Draknon
Fri Apr 06, 2018 5:13 pm
Forum: Script Support & Releases
Topic: Script doesn't work... why?
Replies: 11
Views: 10792

Re: Script doesn't work... why?

... doesn't work means nothing happens absolutely nothing Could be a few things. First, check to be sure script is loaded, as expected: In partyline, do: .binds *!menu* and what is returned? .... is the bind loaded, as expected? If so - good. Now notice the HITS counter. Note the count. Then go try...
by Draknon
Fri Apr 06, 2018 1:43 pm
Forum: Script Support & Releases
Topic: Script doesn't work... why?
Replies: 11
Views: 10792

ok, let me try it this way... here is the issue.. the !menus or !lists does nothing ( Does not work ) the !pizza does exactly as it is supposed to. bind pub - !menus pub_menu proc pub_menu {nick uhost hand channel rest} { global botnick putquick "NOTICE $nick :Loading menu" putquick "...
by Draknon
Fri Apr 06, 2018 1:00 pm
Forum: Script Support & Releases
Topic: Script doesn't work... why?
Replies: 11
Views: 10792

Re: Script doesn't work... why?

willyw wrote:
Draknon wrote:can someone tell me why the !menu part doesn't work..
...
"doesn't work" does not tell us what happens.

What does happen?
doesn't work means nothing happens absolutely nothing
by Draknon
Fri Apr 06, 2018 11:47 am
Forum: Script Requests
Topic: Trying to go from mIRC to tcl
Replies: 12
Views: 9726

willyw, you are awesome, thank you very much for the translate and for the links.
by Draknon
Fri Apr 06, 2018 4:08 am
Forum: Script Support & Releases
Topic: Script doesn't work... why?
Replies: 11
Views: 10792

Script doesn't work... why?

can someone tell me why the !menu part doesn't work.. the rest of the script works just fine. proc pub_menu {nick uhost hand channel rest} { global botnick putquick "NOTICE $nick :Loading menu" putquick "NOTICE $nick :Menu this create by Novita & Indra Pratama" putquick "...
by Draknon
Fri Apr 06, 2018 2:44 am
Forum: Script Requests
Topic: Trying to go from mIRC to tcl
Replies: 12
Views: 9726

Trying to go from mIRC to tcl

I am trying to learn tcl but I am just not getting it, so, I'll try it they way I learned mirc.. adapting from what others did.. if someone could change the following code from mIRC to tcl, it would help me understand at least how a cpl things work. on 1:TEXT:!cocoa:#:/describe # goes tho the TARDIS...
by Draknon
Wed Apr 04, 2018 9:56 pm
Forum: Script Requests
Topic: voice for nick with non Cap 1st letter
Replies: 6
Views: 6733

ok, I copy and pasted the new and it is still not working.. I think I kinda understand what some things are supposed to do.. can we just get rid of the ... if {[isbotnick $nick] || ![botisop $chan]} return and just expect that the bot is an op, because it is. and sorry, I didn't explain what the ori...
by Draknon
Tue Apr 03, 2018 6:26 am
Forum: Script Requests
Topic: voice for nick with non Cap 1st letter
Replies: 6
Views: 6733

you are awesome

but, unfortunately it doesn't work at all :(

I am trying to learn, but it isn't easy for me so I'm not sure where the issue is.
by Draknon
Sun Apr 01, 2018 8:29 am
Forum: Script Requests
Topic: voice for nick with non Cap 1st letter
Replies: 6
Views: 6733

voice for nick with non Cap 1st letter

I currently have this for an mIRC bot.. would like to have it for eggdrop bot so need it in tlc. any help would be appreciated.. alias -l _c return #The-Dungeon alias startwithupper { if ( $1 ) { return $isupper($left($regsubex($$1,/\W+/g,$null),1)) } else return $false } on @*:JOIN:#The-Dungeon:{ i...