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

by tuete
Tue Jul 26, 2005 3:31 am
Forum: Archive
Topic: string help
Replies: 3
Views: 2364

the easiest way is to split your string into a list, then you can access the single list elements. set mystring "hello my name is loser" set list [split $mystring " "] set element [lrange $list 0 0] in this example the var element would contain "hello". try to experimen...
by tuete
Tue Jul 26, 2005 3:10 am
Forum: Archive
Topic: trigger in query: user on known channel?
Replies: 0
Views: 3044

trigger in query: user on known channel?

hi, my bot performs several actions with a database. one type of db-query is only possible in query with the bot. my question is now how to prevent users that are not on a known channel from being able to use the trigger in query? thanks in advance, tuete edit: found solution by myself, sorry for as...