I cant work out what im doing wrong here, this should respond to Request Number* in a channel and check to see whether the file requested is on my hard drive. If it is, it should then send to the nick asking for it. Any help would be much appreciated smile

ON *:LOAD: {
set %workingincdir $sdir(c:\,Select directory where folders with rar files are)
}
ON *:TEXT:8Request number*:#incomplete: { if ($exists($findfile(%workingincdir,$10,5))) {
msg #incomplete I have your file and am sending to you now
dcc send $nick " $+ %workingincdir [ $+ $findfile(%workingincdir,$10,5) ] $+ "
msg #incomplete !close Request Number $4
}
else {
haltdef
}
}


i script, therefore i am smirk
theres logic in there somewhere...