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.

fconfigure dccsend ??

Old posts that have not been replied to for several years.
Locked
O
Ofloo
Owner
Posts: 953
Joined: Tue May 13, 2003 1:37 am
Location: Belguim
Contact:

fconfigure dccsend ??

Post by Ofloo »

How do i use fconfigure on dccsend ? i tryed it but it couldn't find sutch channel of course sounds logic but how do i get the channel ? or what is the channel ive tryed various combinations .. but no working result ! ?

its when i dcc a txt file it gives funny outputs in win envirement cause of the \n i gues but how do i fix this ?
XplaiN but think of me as stupid
User avatar
BarkerJr
Op
Posts: 104
Joined: Sun Mar 30, 2003 1:25 am
Contact:

Re: fconfigure dccsend ??

Post by BarkerJr »

Ofloo wrote:its when i dcc a txt file it gives funny outputs in win envirement cause of the \n i gues but how do i fix this ?
Tell them to open the files in wordpad, rather than notepad, I guess. Or write them in windows, and not linux.
O
Ofloo
Owner
Posts: 953
Joined: Tue May 13, 2003 1:37 am
Location: Belguim
Contact:

Post by Ofloo »

there should be a way !! this is not a solution i could also say install linux :p
XplaiN but think of me as stupid
O
Ofloo
Owner
Posts: 953
Joined: Tue May 13, 2003 1:37 am
Location: Belguim
Contact:

Post by Ofloo »

nevermind found it

Code: Select all

set rfile [open "filename" "r"]
set wfile [open "nfilename" "w"]
fconfigure $rfile -translation crlf
fconfigure $wfile -translation crlf
set data [read $rfile]
puts $wfile $data
close $wfile
close $rfile
dccsend nfilename $nick
XplaiN but think of me as stupid
Locked