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

by NoZparker
Mon Sep 28, 2009 10:42 pm
Forum: Scripting Help
Topic: Commands
Replies: 5
Views: 3415

whilst reading the url http://eggdrop.org.ru/data/man/sunnet/index.html


i've found another method (so easy)

Code: Select all

	set text [lrange [split $text] 2 end]
	set text "$text :requested by $nick"
seems like one minute nothing works, the next minute three options work
by NoZparker
Mon Sep 28, 2009 10:12 pm
Forum: Scripting Help
Topic: Commands
Replies: 5
Views: 3415

How to add text to a line of text

many thanks for your quick reply

Code: Select all

set text "[join [lrange [split $text] 2 end]] requested by $nick"
does work

I have also found that

Code: Select all

set text [lrange [split $text] 2 end]
lappend text :Requested by $nick
also works
found that merged with other stuff in "tip of the day"
by NoZparker
Mon Sep 28, 2009 8:06 pm
Forum: Scripting Help
Topic: Commands
Replies: 5
Views: 3415

Commands

Where can i find a list of ALL commands and the correct syntax used in a tcl
for example:-
lindex
lrange
lreplace
and how to add a line of text to a line of text
eg,
set text [lrange [split $text] 2 end] + "requested by $nick"
by NoZparker
Thu Jun 15, 2006 1:42 am
Forum: Tcl FAQ
Topic: "Tip of the day"
Replies: 73
Views: 210307

http://www.tcl.tk/man/tcl8.4/TclCmd/contents.htm in the words of those that are here all the time RTFM Is A tip hah, a candid signature; if you had listened to your dad, perhaps you wouldn't be posting off-topic; what you had to say is hardly a Tcl tip, let alone a trick Is a critisism and who do y...
by NoZparker
Wed Jun 14, 2006 5:21 pm
Forum: Tcl FAQ
Topic: "Tip of the day"
Replies: 73
Views: 210307

Don't Work vs Does Work

while :- rm path/filename <--- does not work (to delete a file) and mv path/filename <--- does not work (to move a file) file delete -- path/filename <--- does work and file copy -- path/filename(source) path(destination) <--- does work so if your commands don't work do not despair try :- http://www...
by NoZparker
Mon Dec 12, 2005 2:37 pm
Forum: Eggdrop Help
Topic: Speed?
Replies: 13
Views: 22751

auto voicing faster

the fist command issued by the bot would be instant so as a user joined the bots channel it should voice them immediately if another user joined then they should also be voiced immediately however if two users joined together then one may have to wait untill 2 seconds has expired (by default) before...
by NoZparker
Thu Jun 30, 2005 7:59 am
Forum: Tcl FAQ
Topic: "Tip of the day"
Replies: 73
Views: 210307

getting out of hand

Whilst most of these tips are damn good info and some i have used myself, they appear to be getting out of hand. and becoming so technical they are hard to follow. Can ya keep it short and sweet and an email address for more info if needed.
Now there's a tip for ya!
by NoZparker
Thu May 19, 2005 7:26 pm
Forum: Eggdrop Help
Topic: Speed?
Replies: 13
Views: 22751

well i recompiled the bots and set

#define msgrate 2

to

#define msgrate 1

and so far it's working great

twice the speed
thankyou very much dossi
if it don't get flooded off i may try .75 later
or dare i try .5 ...............lol
by NoZparker
Wed May 18, 2005 1:43 pm
Forum: Archive
Topic: set the local port range used by eggdrop
Replies: 8
Views: 3747

Is this what you are looking for in the windrop bot.conf file # This opens a telnet port by which you and other bots can interact with the # Eggdrop by telneting in. # # There are more options for the listen command in doc/tcl-commands.doc. Note # that if you are running more than one bot on the sam...
by NoZparker
Mon May 16, 2005 7:26 am
Forum: Eggdrop Help
Topic: Speed?
Replies: 13
Views: 22751

nah ...
putquick "string_here" -next
is no faster

so lets look at the source code .... go on give us a clue
by NoZparker
Mon May 16, 2005 7:09 am
Forum: Tcl FAQ
Topic: "Tip of the day"
Replies: 73
Views: 210307

self defence

the meaning was ... eg

How do I get the bot to set differant types of bans

answer

pushmode <channel> <mode> [arg]

the [arg] can be found in mirc as in nick!ident@host or any combination thereof
by NoZparker
Sun May 15, 2005 11:04 am
Forum: Eggdrop Help
Topic: Speed?
Replies: 13
Views: 22751

is there anyway that a putquick can be made to send faster
instead of 1 line per second
perhaps 4 lines per second

whilst sending 20 lines of text putdccraw does flood

when i combined 20 lines of text the mesages still sent at the same speed as putquick
by NoZparker
Sun May 15, 2005 9:48 am
Forum: Tcl FAQ
Topic: "Tip of the day"
Replies: 73
Views: 210307

reading help files

when you looking for answers sometimes it is worth looking in the help file in your mirc script (looking for correct syntax maybe) as well as in the tcl-commands.doc (found in the eggdrop\doc folder
Oh and don't forget to do a search here in the forum
by NoZparker
Fri May 06, 2005 11:38 am
Forum: Tcl FAQ
Topic: "Tip of the day"
Replies: 73
Views: 210307

now how can i shorten this tcl

when you have finished writing a tcl, or think you have finished. look for if's inside of if's. eg
if {1st set of rules} {
if {2nd set of rules} {
do your stuff
}
}
can be written
if {(1st set of rules) && (2nd set of rules)} {
do your stuff
}

--------------- save space
by NoZparker
Fri May 06, 2005 11:37 am
Forum: Tcl FAQ
Topic: "Tip of the day"
Replies: 73
Views: 210307

What on earth is this variable

Whilst writing a tcl use long discription variables. That makes it easier to follow. Then when you are finished replace with shortened variables. (keep it small)