Where in the folder structure should it go, exactly ?
Same level as assets is correct. "DeirdraIcon.ico", "AbsarokeIcon.ico" and "Fall from Heave 2 041 Credits.rtf" should be in the same folder.
The other thing that think could be wrong is if the mod isn't in the same place as you installed Beyond the Sword.
It works in quite a simplistic way, start in the Beyond the Sword folder and look through all subfolders; when it finds a file named "modular_python_marker.txt", assume that is the mod folder.
It doesn't look through "%USERPROFILE%\My Documents\My Games" if that's where you installed the mod. Mostly because I don't know if it's possible to install mods there.
Could you tell me the full path to your install dir?
If nothing works:
Spoiler :
You could replace: (ModularEventManager.py, last lines but one)
Code:
modDir = None
for root, dirs, files in os.walk( os.getcwd() ):
if 'modular_python_marker.txt' in files:
modDir = root
break
elif 'DeirdraIcon.ico' in files:
# A minor shortcut. Will usually bypass any subdirs of modules.
# No harm done if it doesn't.
dirs[:] = []
if modDir is None:
raise ImportError( 'Cant find the install directory' )
with
Code:
modDir = "full path to the dir where you installed modular python remembering to double any backslash (\\)"
I would like to know what the problem is and fix it though.