I put the song files into the Music folder within com.turbine.lotroclient but when I /play one it says it can't find the file. It looks like it inserts a backslash into the name which is screwing it up:
eg.
Couldn't open file /Users/worth/Library/Application Support/com.turbine.lotroclient/Music\speed.txt.
I put the song files into the Music folder within com.turbine.lotroclient but when I /play one it says it can't find the file. It looks like it inserts a backslash into the name which is screwing it up:
eg.
Couldn't open file /Users/worth/Library/Application Support/com.turbine.lotroclient/Music\speed.txt.
Yes and it's looking for .TXT files rather than .ABC.
\ is normally an escape character, so I thought I'd be clever and try things like
/play /myfile
Which just changes the error string to "Couldn't open .../Music\/myfile.txt"
It would seem that the \ is being taken as a literal and it just invalidating the path.
I have tried with file name as both .ABC and .TXT and many variations that would normally work in LUA or bash paths.