mIRC Home    About    Download    Register    News    Help

Print Thread
#40034 06/08/03 09:07 AM
Joined: Aug 2003
Posts: 9
Z
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
Z
Joined: Aug 2003
Posts: 9
I'm using the lastest version of mIRC, the 6.03 on Windows XP Home Edition Portuguese and when i wrote this code on the remote section, it does not work because the name path has spaces. I want to iniciate my fileserve when someone writes !Zakarumite on the channel #grave confused

example:

on 1:TEXT:!Zakarumite:#grave:/fserve $nick 1 C:\my mp3\Uploads C:\my mp3\Uploads\welcome.txt

this does not works because I've a directory called "my mp3" with a space, but if I change the directory name do "mymp3" and the code also it works correctly.

this way:

on 1:TEXT:!Zakarumite:#grave:/fserve $nick 1 C:\mymp3\Uploads C:\mymp3\Uploads\welcome.txt

#40035 06/08/03 09:24 AM
Joined: Feb 2003
Posts: 2,812
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2003
Posts: 2,812
Most commands that handle file paths require quotation marks around paths with spaces.

/fserve $nick 1 "C:\my mp3\Uploads" "C:\my mp3\Uploads\welcome.txt"

- Raccoon


Well. At least I won lunch.
Good philosophy, see good in bad, I like!
#40036 06/08/03 09:58 AM
Joined: Aug 2003
Posts: 9
Z
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
Z
Joined: Aug 2003
Posts: 9
thanks!!! laugh


Link Copied to Clipboard