mIRC Home    About    Download    Register    News    Help

Print Thread
#86956 15/06/04 09:59 AM
Joined: Mar 2003
Posts: 160
Marantz Offline OP
Vogon poet
OP Offline
Vogon poet
Joined: Mar 2003
Posts: 160
Someone has just asked me if it's possible to remove the _ char from files he recieves through dcc, he says there was an option in mIRC 6.0 to remove them
but i don't recall this, any help would be great.

Joined: Apr 2004
Posts: 45
V
Ameglian cow
Offline
Ameglian cow
V
Joined: Apr 2004
Posts: 45
when you DCC a file to someone, look in the DCC screen for a checkbox labeled Fill Spaces. Once you UNcheck this box, then successfully send a file, the setting is remembered and from then on, for all files you send to others, spaces will not be replaced with underscores. You can also use this little snippet I made a while back, to remove underscores from all files you receive:

Code:
on *:filercvd:*.*: {
  .rename " $+ $filename $+ " " $+ $nofile($filename) $+ $replace($nopath($filename),_,$chr(32)) $+ "
}


Hope this helps.

-Venoman

Joined: Aug 2004
Posts: 3
B
Self-satisified door
Offline
Self-satisified door
B
Joined: Aug 2004
Posts: 3
Can you also make a code so that I will receive all files with the first letter of each word capitalized?
I've seen talk of it in the forum, but can't find the code.
If I request a file named in all Lower Case, then that's how i get it.
If I request a file named with All Capital Letters, then that's how i get it.
I want any file I request to come to me with Just the 1st Letter of each word capitalized.
Thank you for your time


Link Copied to Clipboard