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

by err0r
Fri May 11, 2012 2:36 am
Forum: Scripting Help
Topic: If data exists , skip adding data
Replies: 2
Views: 3341

moreresult produces errors using mysql.mod :(
by err0r
Thu May 10, 2012 5:25 pm
Forum: Scripting Help
Topic: If data exists , skip adding data
Replies: 2
Views: 3341

If data exists , skip adding data

Below is the Proc that i use... It takes the data from a line of text, selects the data in a mysql query. That works fine, but what i would like is, if the data exists in the database, the data is not added again. I have tried many things but it fails any suggestions please ? proc check123 { nick ho...
by err0r
Thu May 03, 2012 4:12 pm
Forum: Scripting Help
Topic: see if a number was entered
Replies: 5
Views: 5048

see if a number was entered

i continue to get ,,,, that was not a number ....
what can be wrong ?
by err0r
Wed May 02, 2012 6:09 pm
Forum: Scripting Help
Topic: see if a number was entered
Replies: 5
Views: 5048

see if a number was entered

bind pub - -check isnumber proc isnumber { nick host hand chan text} { set text [split $text] set fbid [lindex $text 1] if ([isnum $fbid]) { putquick "PRIVMSG #kesh :I got a number " } else { putquick "PRIVMSG #kesh :That was not a number " } } proc isnum {string} {if {([string ...
by err0r
Mon Apr 30, 2012 7:43 pm
Forum: Scripting Help
Topic: extracting information from text to variables
Replies: 3
Views: 3615

Re: extracting information from text to variables

Not what i really wanted, but it has given me all i needed to get it going, many thanks willyw
by err0r
Sat Apr 21, 2012 9:06 pm
Forum: Scripting Help
Topic: extracting information from text to variables
Replies: 3
Views: 3615

extracting information from text to variables

i have this text : CONNECT Zet^ (~CHAT2ME.c@41-135-29-27.dsl.mweb.co.za, CHAT2ME.co.za) [41.135.29.27] has connected to the network i would like to capture the nickname, in this case its zet^ also the ident which in this case is CHAT2ME.c the isp which is 41-135-29-27.dsl.mweb.co.za in the example a...