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

by Madalin
Thu Jan 24, 2019 8:59 am
Forum: Scripting Help
Topic: Spliting text in two lines
Replies: 9
Views: 9435

Yes its from a trivia script i wrote from scratch.

I was thinking of something to add the letters after the split, but never got it working.
by Madalin
Wed Jan 23, 2019 3:05 pm
Forum: Scripting Help
Topic: Spliting text in two lines
Replies: 9
Views: 9435

heartbroken: Works only if i stop the antihack part. So when the questions is "word word word" works, but when its in a single word it brocks. Anyone with an idea on how to make anything split using the antihack option? Antihack = it adds a random letter each question between the spaces of...
by Madalin
Wed Jan 23, 2019 2:42 pm
Forum: Scripting Help
Topic: Spliting text in two lines
Replies: 9
Views: 9435

It looks that way because of the ANTI HACK part.
by Madalin
Mon Jan 21, 2019 1:10 pm
Forum: Scripting Help
Topic: Spliting text in two lines
Replies: 9
Views: 9435

proc Trivia247:wraptext {chan text characters} { set len [string length $text] putlog $len while {$len} { if {$len > $characters} { set cut [string range $text 0 [expr $characters - 1]] set output [string range $cut 0 [string last " " $cut]] set text [string range $text [string length $ou...
by Madalin
Sun Jan 20, 2019 11:36 am
Forum: Scripting Help
Topic: Spliting text in two lines
Replies: 9
Views: 9435

Spliting text in two lines

Evening, can anyone help me with a code that will split the text in two lines (getting all the text in does 2 lines) if its bigger than a max length ? Thanks
by Madalin
Sun Jan 06, 2019 12:50 pm
Forum: Scripting Help
Topic: Character hiding and showing
Replies: 3
Views: 4918

I want to show does characters not hide them.
by Madalin
Fri Jan 04, 2019 12:46 pm
Forum: Scripting Help
Topic: Character hiding and showing
Replies: 3
Views: 4918

Character hiding and showing

Evening. I have a small problem with the following code, meaning that it works 97% :) I cannot make it show ' ` and ? proc hideword {word} { set newword ""; foreach letter [split $word {}] { if {$letter ne " " && $letter ne "-" && $letter ne ","...
by Madalin
Wed Mar 07, 2018 1:04 pm
Forum: Scripting Help
Topic: routines for daily/weekly/monthly/yearly
Replies: 0
Views: 5914

routines for daily/weekly/monthly/yearly

Can anyone tell me if these are the correct codes for bind time routines? if {($min eq "01") && [regexp {^(00|07|14|21|28)$} $day]} { putlog "UserAge Weekly RESET has been triggered"; set temp(userage-reset) "weekly" } if {$min eq "02" && $day ...
by Madalin
Mon Dec 25, 2017 9:50 am
Forum: Script Support & Releases
Topic: Radio TCL Script
Replies: 2
Views: 15288

Only for shoutcast
by Madalin
Fri Nov 03, 2017 2:34 am
Forum: Scripting Help
Topic: Register/login/deauth & data save
Replies: 0
Views: 5810

Register/login/deauth & data save

Can anyone give me an idea on how to approche the following script?! I want user to be able to add some variables like age, name, email but i want them to change whenever they want. I was thinking of saving the var's under the hostname &/or nickname (but this changes). My other question is anyw...
by Madalin
Tue Aug 01, 2017 3:06 am
Forum: Scripting Help
Topic: How to check for certain nicks
Replies: 7
Views: 9314

Another way much easier would be this, to ignore some nicknames.

Code: Select all

set temp(ignore) [list nick1 nick2 nick3]
and in the proc just use

Code: Select all

if {[lsearch -nocase $nickname $temp(ignore)] ne "-1"} { return }
by Madalin
Wed Mar 08, 2017 11:16 am
Forum: Scripting Help
Topic: [Request & Help] Seen Script with an Exta Feature.
Replies: 4
Views: 8521

For a script like that you can find one here https://github.com/MadaliNTCL/eggdrop-t ... aster/seen

and for the NOTICE use the same way t o modify
by Madalin
Wed Mar 08, 2017 10:58 am
Forum: Scripting Help
Topic: [Request & Help] Seen Script with an Exta Feature.
Replies: 4
Views: 8521

Change

Code: Select all

putserv "PRIVMSG $channel :
with

Code: Select all

putserv "NOTICE $nick:
by Madalin
Mon Mar 06, 2017 8:42 am
Forum: Script Requests
Topic: psyBNC tcl for eggdrop
Replies: 3
Views: 7593

You could try znc it supports tcl scripting and i think you will find alot of scripts for automated znc request
by Madalin
Mon Mar 06, 2017 8:41 am
Forum: Script Requests
Topic: Play text file
Replies: 9
Views: 10662

If someone will want to use it in the future i will make it public. He/She just needs to ask it. Don`t want to post it because maybe im gonna improve it so no need for older version posted here.