I have moved all my documents over to another driver, this is done right so all symbolic links also point there under env paths and so on, but AMS no longer lets me detect a file what is under the driver for some reason and its 100% there
Both file detect, audo load and the lua file detect are failing, All the messages are printing back right so I don't understand why its not working.
Code:
SystemMessage(From, "Audio Enabled", true, false); if String.Find(Data, "SoundBite||", 1, true) == 1 then MySound = mysplit(Data, "||") SystemMessage(From, "Sound Request Found "..Data.."("..type(MySound[2]).."):"..tostring(MySound[2]), false, false); if MySound[2] == "Yahoo" then SystemMessage(From, "Request for Yahoo", false, false); if File.DoesExist(_SourceFolder.."\\AutoPlay\\Audio\\y"..tostring(MySound[3])..".ogg") then __SendMe = false; SystemMessage(From, "SoundBite found", false, true); Audio.Load(CHANNEL_USER1, _SourceFolder.."\\AutoPlay\\Audio\\y"..tostring(MySound[3])..".ogg", true, false); else _Meg = "" if fileExists(_SourceFolder.."\\AutoPlay\\Audio\\y"..tostring(MySound[3])..".ogg") then _Meg = "Lua version found the file"; end SystemMessage(From, "Unable to find SoundBite ("..type(MySound[3]).."):"..tostring(MySound[3])..":(".._Meg..")", false, true); end end
Comment