Just ran the hotfix that you posted (both of them) and still not working as intended but working well enough. I now have half of the server on my allowed list lol so yay no more errors, but for some reason upon a tell thats not on my list, rather than play the sound like selected it just gives me another error message. As you know normally I would post the exact info for you but like a moron I just hit reset and added the person to the list.
Here's a fix:
Replace the following procedure in dbinclude.vbs:
Code: Register to unlock hidden link
sub ClearLog()
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.OpenTextFile(Logpath, ForWriting)
Set objFile = objFSO.OpenTextFile(Logpath, ForReading)
strSearchString = objFile.ReadAll
objFile.Close
arrLines = Split(strContents, vbCrLf)
Set objFile = objFSO.OpenTextFile(Logpath, ForWriting)
For i = 0 to UBound(arrLines) - 1
objFile.WriteLine arrLines(i)
Next
objFile.WriteLine ("Clearing Log")
objFile.Close
End sub
with this:
Code: Register to unlock hidden link
sub ClearLog()
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.OpenTextFile(Logpath, ForWriting)
objFile.WriteLine ("Clearing Log")
objFile.Close
End sub
Further, make sure the wav file specified in TSound in dbconfig is a valid file. I had to change ring.wav to ringin.wav
EDIT: looks like mythic posted while I was doing the same
