I am using Kixtart 4.12 on Windows 2000 and am having a problem with USE. Here is the script:
code:
  

$letter = "G:"
$path = "\\yeg01-nts-04\it_drive"
Gosub mapdrive

...

:mapdrive
$map = $map + 1
AT ($map,0) "Connecting to $path as $letter Drive"
Use $letter "$path"
Return

code:
  

The message that I get when I run this script is "Script error: error in use statement! Return". Is there any way to make it so the "Use" doesn't think that the Return statement is part of it's arguments?