i get some data from web server and after that print it to private... but i see , that eggdrop print no full string.. it hasn't end.. about 285 letters prints only...
why it's so ?? my code
set wzout [gets $wzsock]
putserv "privmsg $nick :$wzout"
You're getting this effect for 2 reasons. Firstly because you haven't read your config file:
# Set here the maximum number of lines to queue to the server. If you're
# going to dump large chunks of text to people over IRC, you will probably
# want to raise this. 300 is fine for most people though.
set max-queue-msg 300
and secondly because you haven't read RFC1459, which somewhere states that an IRCD should limit the number of characters in a user command (something around the 450 mark for EFNet, dunno what the other networks allow).