by engineer » Fri Apr 23, 2010 4:16 pm
I liked so much this addon
But the Paranoia condition that exclude improper character ... i changed it
old condition
- Code: Select all
If InStr(FirstQuality, "\") or InStr(FirstQuality, "/") Then
FirstGenre = "default"
If Debug Then Call out("Paranoia: The quality contains a " &_
" \ or / so we revert to the default.sde file.")
End If
the new one
- Code: Select all
If InStr(FirstQuality, "\") or InStr(FirstQuality, "/") Then
If InStr(FirstQuality, "\") Then FirstQuality = Replace(FirstQuality, "\", "_")
If InStr(FirstQuality, "/") Then FirstQuality = Replace(FirstQuality, "/", "_")
'* FirstGenre = "default"
If Debug Then Call out("Paranoia: The quality contains a " &_
" \ or / so we revert to the default.sde file.")
End If
The same at the paranoia genre condition
so if your genre is pop/rock it will choose the pop_rock.sde file
I liked so much this addon
But the Paranoia condition that exclude improper character ... i changed it
old condition
[code] If InStr(FirstQuality, "\") or InStr(FirstQuality, "/") Then
FirstGenre = "default"
If Debug Then Call out("Paranoia: The quality contains a " &_
" \ or / so we revert to the default.sde file.")
End If
[/code]
the new one
[code]
If InStr(FirstQuality, "\") or InStr(FirstQuality, "/") Then
If InStr(FirstQuality, "\") Then FirstQuality = Replace(FirstQuality, "\", "_")
If InStr(FirstQuality, "/") Then FirstQuality = Replace(FirstQuality, "/", "_")
'* FirstGenre = "default"
If Debug Then Call out("Paranoia: The quality contains a " &_
" \ or / so we revert to the default.sde file.")
End If
[/code]
The same at the paranoia genre condition
so if your genre is pop/rock it will choose the pop_rock.sde file