Skip to content

trouble using baldur.ini

I wanted to enable cheat in BG2EE to get the bag of ammo so I follow this instruction
Open the Baldur.ini file with notepad, look for a heading called [Program Options]. Under this heading type: Debug Mode=1, then save and exit. Start your game of BG2 as normal and in game press Control+Space to activate the console.
I open the only Baldur.ini i found and It show below
So where do I add Debug Mode=1 ? , please add in the correct way below so I can just copy and paste it into the file, thank you very much
I'm using window 10

CREATE TABLE options (
section string,
name string,
value string
);
INSERT INTO options ROWS (
'Window', 'Full Screen', '1',
'MOVIES', 'BLACKPIT', '1',
'Game Options', 'Footsteps', '1',
'Game Options', 'Memory Level', '1',
'Game Options', 'Mouse Scroll Speed', '36',
'Game Options', 'GUI Feedback Level', '5',
'Game Options', 'Locator Feedback Level', '3',
'Game Options', 'Bored Timeout', '3000',
'Game Options', 'Always Dither', '1',
'Game Options', 'Subtitles', '1',
'Game Options', 'Keyboard Scroll Speed', '36',
'Game Options', 'Command Sounds Frequency', '2',
'Game Options', 'Selection Sounds Frequency', '3',
'Game Options', 'Effect Text Level', '62',
'Game Options', 'Infravision', '1',
'Game Options', 'Weather', '1',
'Game Options', 'Tutorial State', '1',
'Game Options', 'Attack Sounds', '1',
'Game Options', 'Auto Pause State', '0',
'Game Options', 'Auto Pause Center', '1',
'Game Options', 'Difficulty Level', '2',
'Game Options', 'Quick Item Mapping', '1',
'Game Options', 'Environmental Audio', '1',
'Game Options', 'Heal Party on Rest', '1',
'Game Options', 'Terrain Hugging', '0',
'Game Options', 'HP Over Head', '0',
'Game Options', 'Critical Hit Screen Shake', '1',
'Game Options', 'Hotkeys On Tooltips', '1',
'Game Options', 'Area Effects Density', '100',
'Game Options', 'Duplicate Floating Text', '1',
'Game Options', 'Tiles Precache Percent', '100',
'Game Options', 'Pausing Map', '0',
'Game Options', 'Extra Feedback', '0',
'Game Options', 'Filter Games', '1',
'Game Options', 'All Learn Spell Info', '1',
'Program Options', 'Font Name', '',
'Program Options', 'Double Byte Character Support', '0',
'Program Options', 'Drop Capitals', '1',
'Program Options', '3D Acceleration', '1',
'Program Options', 'Maximum Frame Rate', '30',
'Program Options', 'Path Search Nodes', '32000',
'Program Options', 'Tooltips', '60',
'Program Options', 'Translucent Shadows', '1',
'Program Options', 'Sprite Mirror', '0',
'Program Options', 'Gamma Correction', '0',
'Program Options', 'Brightness Correction', '0',
'Program Options', 'Backwards Compatible 3d', '0',
'Program Options', 'Volume Movie', '90',
'Program Options', 'Volume Music', '40',
'Program Options', 'Volume Voices', '100',
'Program Options', 'Volume Ambients', '40',
'Program Options', 'Volume SFX', '80',
'Window', 'x', '171',
'Window', 'y', '31',
'Window', 'w', '1024',
'Window', 'h', '736',
'MOVIES', 'INTRO', '1',
'Window', 'Maximized', '1',
'MOVIES', 'FRARMINN', '1'
);

Comments

  • SomeSortSomeSort Member Posts: 859
    Per @elminster in this thread,

    If you're running version 1.3, you need to enter:
    'Program Options', 'Debug Mode', '1',

    If you're running version 2.0, you need to enter:
    SetPrivateProfileString('Program Options','Debug Mode','1')

    As for where you enter it... put it anywhere you want after the "INSERT INTO options ROWS (" line. Order doesn't matter, it just needs to be in that list somewhere. I usually put it at the very top to make it easier to later check whether I have it turned on or not.
    JuliusBorisov
  • DoubledimasDoubledimas Member, Mobile Tester Posts: 1,286
    And don't forget that for v2+ you have to edit the baldur.lua file instead of the .ini file.
    JuliusBorisov
  • undeadheroundeadhero Member Posts: 6

    And don't forget that for v2+ you have to edit the baldur.lua file instead of the .ini file.

    then how do I edit baldur.lua file ?
  • DoubledimasDoubledimas Member, Mobile Tester Posts: 1,286

    And don't forget that for v2+ you have to edit the baldur.lua file instead of the .ini file.

    then how do I edit baldur.lua file ?
    Also with just a text editor. If I'm not mistaken even regular notepad works fine.
  • undeadheroundeadhero Member Posts: 6

    And don't forget that for v2+ you have to edit the baldur.lua file instead of the .ini file.

    then how do I edit baldur.lua file ?
    Also with just a text editor. If I'm not mistaken even regular notepad works fine.
    So I can add anywhere

    SetPrivateProfileString('Program Options','Debug Mode','1')

    or

    Debug Mode=1

  • DoubledimasDoubledimas Member, Mobile Tester Posts: 1,286

    And don't forget that for v2+ you have to edit the baldur.lua file instead of the .ini file.

    then how do I edit baldur.lua file ?
    Also with just a text editor. If I'm not mistaken even regular notepad works fine.
    SetPrivateProfileString('Program Options','Debug Mode','1')
Sign In or Register to comment.