Posted by: Karen
« on: November 06, 2010, 10:59:12 PM »thanks - I'll try elsewhere.
Karen
Karen
setup-g3_debugging_suite.command: line 5: ./setup-setup-g3_debugging_suite: No such file or directoryMake sure there's a folder called g3_debugging_suite in your BGII game folder. Then open that setup-g3_debugging_suite.command file with a text editor and change that line 5 from this:
setup-setup-g3_debugging_suiteto this:
setup-g3_debugging_suiteNote the debugging suite won't actually fix anything in your game. It just reports potential issues, primarily of interest to modders.
Extract the contents of the mod to the folder of the game you wish to modify. On successful extraction, there should be a (modname) subfolder in your game folder. Download the OS X version of WeiDU (or copy another mod's launcher) and rename it setup-(modname). Put the setup-(modname) launcher and the setup-(modname).command file within the (modname) subfolder in your main game folder. To install, double-click on setup-(modname).command and follow the instructions on screen.Substitute (modname) with the mod's name of course (such as crefixer or resfixer). If there's no .command file delivered with the mod, you can make one by opening a file in a text editor and putting the following in it:
#!/bin/shSave that and execute as indicated above. Mind you, I'm operating mainly by hearsay - I don't actually have a Mac, so I'm sure some Mac guru can give better instructions.
command_path=$(0%/*)
cd "$command_path"
./setup-(modname)
exit 0