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.
Help for those learning Tcl or writing their own scripts.
-
Arnold_X-P
- Master
- Posts: 226
- Joined: Mon Oct 30, 2006 12:19 am
- Location: DALnet - Trinidad - Beni - Bolivia
-
Contact:
Post
by Arnold_X-P »
the code works fine only that it generates this error
Line 1: NOTICE: Found constant "
init-server" which is also a variable.
Code: Select all
bind evnt - init-server evnt:init_server
proc evnt:init_server {type} {
global botnick
putquick "NICKSERV IDENTIFY $::nick your-password" -next
putquick "MODE $botnick +i-ws"
}
someone help me please
-
SpiKe^^
- Owner
- Posts: 831
- Joined: Fri May 12, 2006 10:20 pm
- Location: Tennessee, USA
-
Contact:
Post
by SpiKe^^ »
That's not an error, it's a notice.
In this case it means little to nothing.
-
CrazyCat
- Revered One
- Posts: 1304
- Joined: Sun Jan 13, 2002 8:00 pm
- Location: France
-
Contact:
Post
by CrazyCat »
Or modify the bind:
Code: Select all
bind evnt - "init-server" evnt:init_server
-
Arnold_X-P
- Master
- Posts: 226
- Joined: Mon Oct 30, 2006 12:19 am
- Location: DALnet - Trinidad - Beni - Bolivia
-
Contact:
Post
by Arnold_X-P »
Thanks crazycat & Spike^^