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

by tebor
Sun Dec 26, 2004 4:19 pm
Forum: Archive
Topic: Cut string in pieces
Replies: 7
Views: 2955

Woah so cool! That is bloody briliant *grins* Thank you that is going to be most valuable. you need to wrap words ? this works wrote it while back maybe you get some ideas http://ftp.ofloo.net/pub/scripts/wrap.tcl.gz can be improved a bit by using lappend value $var instead of append value ${var}\x2...
by tebor
Sun Dec 26, 2004 1:07 am
Forum: Archive
Topic: Cut string in pieces
Replies: 7
Views: 2955

Re: Cut string in pieces

Maybe I can make it a bit clearer.... I am thinking along the lines of.... go thou string starting from char. 380 till you find first blankspace take everything from 0 ->number of the blackspace and post it then continue to then next +380chars and do the same till the rest of the string is smaller t...
by tebor
Sun Dec 26, 2004 12:49 am
Forum: Archive
Topic: Cut string in pieces
Replies: 7
Views: 2955

No it actually doesnt...I have text that do not contain a \n for like pages. see it as a variable containing a couple of hundred of chars that comes back from the mysqlDB So how would I go about it to split it a blankspace beteern char 380 and 400 ? since sending text to an IRC user always breaks on...
by tebor
Sun Dec 26, 2004 12:29 am
Forum: Archive
Topic: Cut string in pieces
Replies: 7
Views: 2955

Cut string in pieces

Hi Community! Ok following problem...Long piece of text, in excess of 1000 chars, that has to be posted to a channel/nick. Hence I cant post more then...400whatnot chars in one post I have to cut this long piece appart. By the way the text comes from a mysql DB. Can someone give me a nudge into the ...
by tebor
Tue Nov 23, 2004 11:50 am
Forum: Archive
Topic: exec output processing
Replies: 1
Views: 1360

exec output processing

Hi Community I am working on a script letting eggdrop do certain functions on a mysql database by evoking the unix shell command mysql. Executing works perfect but I am wondering how I can reuse the output delivered. For example I am doing a search on the DB and get a list. Hence it is multiple line...
by tebor
Sun Sep 19, 2004 12:32 pm
Forum: Archive
Topic: Yet again with a new twist: DCC Chat hostmask scrambling
Replies: 1
Views: 1003

Yet again with a new twist: DCC Chat hostmask scrambling

Hi Community! eggdrop v1.6.16 Situation: 2 eggdrops on two differant networks 1 network scrambles user hostmask to: scramble.domain.com Bot eggdrops run on the same machine, static IP no NAT Hence my router is a piece of junk from Netgear which doesnt do NAT correctly I have to resort to /ctcp $botn...
by tebor
Sun Sep 12, 2004 2:01 am
Forum: Archive
Topic: Voice for special nickname characteristics
Replies: 4
Views: 1428

dollar wrote:
bind join - "#egghelp *!*@*" moo
proc moo {nick uhost hand chan} {
if {[string is upper [string index $nick 0]]} {
pushmode $chan +v $nick
}
}
Something like that. :p

Can I vote you to be my hero? *grins*
by tebor
Sun Sep 12, 2004 1:30 am
Forum: Archive
Topic: Voice for special nickname characteristics
Replies: 4
Views: 1428

Voice for special nickname characteristics

Hi Community. The Idea is pritty simple. Voice everybody who as a nickname starting with a Capital letter. First of course has anybody seen a script that would do just that? Secondly how would I go about it? I was thinking take the nickname on join and cut the rest of the string of except first lett...