Several people have requested that I update BG: EE Classic Movies now that WeiDU is BGEE compatible, and with WeiDU 235 (which will have the variable USER_DIRECTORY with which you can access BGEE's baldur.ini) it will be possible to have WeiDU update Baldur.ini instead of having the user do it manually as is currently the case for the mod. Could someone please code this for me? Every movie that is added to (or is already in) the game should have its corresponding entry added to Baldur.ini:
'MOVIES', 'BEREGOST', '1', 'MOVIES', 'BG4LOGO', '1', 'MOVIES', 'BGENTER', '1', 'MOVIES', 'BGSUNRIS', '1', 'MOVIES', 'BGSUNSET', '1', 'MOVIES', 'BHAAL', '1', 'MOVIES', 'BILOGO', '1', 'MOVIES', 'BIOWBOTH', '1', 'MOVIES', 'BLACKPIT', '1', 'MOVIES', 'BWDRAGON', '1', 'MOVIES', 'CAMP', '1', 'MOVIES', 'CNDLKEEP', '1', 'MOVIES', 'CREDITS', '1', 'MOVIES', 'DAYNITE', '1', 'MOVIES', 'DEATHAND', '1', 'MOVIES', 'DUNGEON', '1', 'MOVIES', 'DURLAG', '1', 'MOVIES', 'ELDRCITY', '1', 'MOVIES', 'ENDCRDIT', '1', 'MOVIES', 'ENDMOVIE', '1', 'MOVIES', 'FRARMINN', '1', 'MOVIES', 'GNOLL', '1', 'MOVIES', 'INFELOGO', '1', 'MOVIES', 'INTRO', '1', 'MOVIES', 'IRONTHRN', '1', 'MOVIES', 'MINEFLOD', '1', 'MOVIES', 'NASHKELL', '1', 'MOVIES', 'NITEDAY', '1', 'MOVIES', 'PALACE', '1', 'MOVIES', 'REST', '1', 'MOVIES', 'RESTDUNG', '1', 'MOVIES', 'RESTINN', '1', 'MOVIES', 'SEWER', '1', 'MOVIES', 'TAVERN', '1', 'MOVIES', 'TSRLOGO', '1', 'MOVIES', 'WOTC', '1', 'MOVIES', 'WRECK', '1', 'MOVIES', 'WYVERN', '1',
I have tested on my machine, and if Baldur.ini does not exist, a "blank" Baldur.ini file can be created and only the necessary entries for the mod need to be added. When the game is run the first time, it will add the default entries to the existing Baldur.ini file (and not overwrite it).
E.g. if Baldur.ini does not exist and all of the movies were installed , the following can be saved as Baldur.ini:
CREATE TABLE options ( section string, name string, value string ); INSERT INTO options ROWS ( 'MOVIES', 'BEREGOST', '1', 'MOVIES', 'BG4LOGO', '1', 'MOVIES', 'BGENTER', '1', 'MOVIES', 'BGSUNRIS', '1', 'MOVIES', 'BGSUNSET', '1', 'MOVIES', 'BHAAL', '1', 'MOVIES', 'BILOGO', '1', 'MOVIES', 'BIOWBOTH', '1', 'MOVIES', 'BLACKPIT', '1', 'MOVIES', 'BWDRAGON', '1', 'MOVIES', 'CAMP', '1', 'MOVIES', 'CNDLKEEP', '1', 'MOVIES', 'CREDITS', '1', 'MOVIES', 'DAYNITE', '1', 'MOVIES', 'DEATHAND', '1', 'MOVIES', 'DUNGEON', '1', 'MOVIES', 'DURLAG', '1', 'MOVIES', 'ELDRCITY', '1', 'MOVIES', 'ENDCRDIT', '1', 'MOVIES', 'ENDMOVIE', '1', 'MOVIES', 'FRARMINN', '1', 'MOVIES', 'GNOLL', '1', 'MOVIES', 'INFELOGO', '1', 'MOVIES', 'INTRO', '1', 'MOVIES', 'IRONTHRN', '1', 'MOVIES', 'MINEFLOD', '1', 'MOVIES', 'NASHKELL', '1', 'MOVIES', 'NITEDAY', '1', 'MOVIES', 'PALACE', '1', 'MOVIES', 'REST', '1', 'MOVIES', 'RESTDUNG', '1', 'MOVIES', 'RESTINN', '1', 'MOVIES', 'SEWER', '1', 'MOVIES', 'TAVERN', '1', 'MOVIES', 'TSRLOGO', '1', 'MOVIES', 'WOTC', '1', 'MOVIES', 'WRECK', '1', 'MOVIES', 'WYVERN', '1', );
Just to specify, the contents of Baldur.ini can be accessed via:
COPY "%USER_DIRECTORY%/baldur.ini" "%USER_DIRECTORY%/baldur.ini"
Setup-BGEEClassicMovies.tp2 3.03K
493 downloads
TIA,
Sam.