Help Can't Get cluaconsole to work
seanbrenna
Member Posts: 10
helllp... lost Gaal's key
i see 'Program Options', 'Debug', '1', in my ini file... but hit control space and I got nothing
i see 'Program Options', 'Debug', '1', in my ini file... but hit control space and I got nothing
0
Comments
section string,
name string,
value string
);
INSERT INTO options ROWS (
'Program Options', 'Debug', '1',
'Fonts', 'ko_KR', 'UNBOM',
'Fonts', 'zh_CN', 'SIMSUN',
'Fonts', 'ja_JP', 'MSGOTHIC',
'Fonts', 'ru_RU', 'PERMIAN',
'Fonts', 'uk_UA', 'PERMIAN',
'Window', 'Full Screen', '1',
'Graphics', 'version', '2.1.1',
'Graphics', 'renderer', 'GeForce 8400M GS/PCI/SSE2',
'Graphics', 'vendor', 'NVIDIA Corporation',
'MOVIES', 'LOGO', '1',
'MOVIES', 'INTRO15F', '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', '0',
'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', '0',
'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', 'Color Circles', '1',
'Graphics', 'Scale UI', '1',
'Game Options', 'Over Confirm Everything', '0',
'Game Options', 'Pausing Map', '0',
'Game Options', 'Extra Feedback', '0',
'Game Options', 'Filter Games', '1',
'Game Options', 'All Learn Spell Info', '0',
'Graphics', 'Hardware Mouse Cursor', '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'
);
!
'Program Options', 'Volume Ambients', '40',
'Program Options', 'Debug', '1',
'Program Options', 'Volume SFX', '80'
This:
'Program Options', 'Debug', '1',
Should be this:
'Program Options', 'Debug Mode', '1',
[spoiler=Fixed]
CREATE TABLE options ( section string, name string, value string ); INSERT INTO options ROWS ( 'Program Options', 'Debug Mode', '1', 'Fonts', 'ko_KR', 'UNBOM', 'Fonts', 'zh_CN', 'SIMSUN', 'Fonts', 'ja_JP', 'MSGOTHIC', 'Fonts', 'ru_RU', 'PERMIAN', 'Fonts', 'uk_UA', 'PERMIAN', 'Window', 'Full Screen', '1', 'Graphics', 'version', '2.1.1', 'Graphics', 'renderer', 'GeForce 8400M GS/PCI/SSE2', 'Graphics', 'vendor', 'NVIDIA Corporation', 'MOVIES', 'LOGO', '1', 'MOVIES', 'INTRO15F', '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', '0', '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', '0', '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', 'Color Circles', '1', 'Graphics', 'Scale UI', '1', 'Game Options', 'Over Confirm Everything', '0', 'Game Options', 'Pausing Map', '0', 'Game Options', 'Extra Feedback', '0', 'Game Options', 'Filter Games', '1', 'Game Options', 'All Learn Spell Info', '0', 'Graphics', 'Hardware Mouse Cursor', '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' );
[/spoiler]
....Wow please ignore that apparently editing BG1:EE will do nothing for BG2:EE. If only I could read which folder I'm clicking on in the first place.
So like
C:CreateItem("Ax1h07")
Would create bala's axe.
What program are you using to edit the file. Also, can you attach your INI file?
If anyone have any idea what to do I would be very grateful.
Thanks but it seems to have worked out for some reason I'm not aware off. I tried it out earlier today after creating a new char and then the console appeared just like it should. My computer was probably having a bad day that evening I had that problem
But thanks anyway.
My problem was the folder was set to read only. check that the folder ANd the file are not set to read only
credit to @elminster
[Alias]
HD0:=C:\Program Files (x86)\Black Isle\BGII - SoA\
CD1:=C:\Program Files (x86)\Black Isle\BGII - SoA\English\;C:\Program Files (x86)\Black Isle\BGII - SoA\CD1\
CD2:=C:\Program Files (x86)\Black Isle\BGII - SoA\CD2\;C:\Program Files (x86)\Black Isle\BGII - SoA\English\;C:\Program Files (x86)\Black Isle\BGII - SoA\CD2\
CD3:=C:\Program Files (x86)\Black Isle\BGII - SoA\English\;C:\Program Files (x86)\Black Isle\BGII - SoA\CD3\
CD4:=C:\Program Files (x86)\Black Isle\BGII - SoA\English\;C:\Program Files (x86)\Black Isle\BGII - SoA\CD4\
CD5:=C:\Program Files (x86)\Black Isle\BGII - SoA\CD5\
[Program Options]
Installing=0
Install Type=3
[Game Options]
Memory Access=100
Memory Level=1
[Local]
Language=English
Language25=English
[Uninstall]
Uninst_dir=C:\Program Files (x86)\InstallShield Installation Information\{7AF32AB1-CB97-11D4-9607-0050BA84F5F7}
Uninst_dir_25=C:\Program Files (x86)\InstallShield Installation Information\{B8C3B479-1716-11D5-968A-0050BA84F5F7}
[GameSpy]
Enabled=1
Help please I would greatly appreciate it.
Putting
Debug Mode =1
Under [Program Options]
Should be good enough.
But yea, otherwise install in C:/games if you can as jackjack says.
Mine currently looks like this:
[Alias]
HD0:=C:\Program Files (x86)\Black Isle\Baldur's Gate\
CD1:=D:\CD1\
CD2:=D:\CD2\
CD3:=D:\CD3\
CD4:=D:\CD4\
CD5:=D:\CD5\
[Program Options]
Debug Mode=1
SoftSrcKeyBltFast=0
SoftBltFast=0
SoftSrcKeyBlt=0
SoftBlt=0
SoftMirrorBlt=0
Translucent Shadows=1
[GameSpy]
Region=0
[Program Options]
Debug Mode=1
Volume Music=40
[Game Options]
Cheats=1
Memory Access=100
Footsteps=1
Weather=1
[Config]
CacheSize=140
And cheats don't work with Ctrl+Space or any combination otherwise...
'Program Options', 'Debug Mode', '1',
underneath
INSERT INTO options ROWS (
So it should look like
INSERT INTO options ROWS (
'Program Options', 'Debug Mode', '1',
From the Library section, right-click on the game and select Properties from the menu.
Select the Local files tab and click the Verify integrity of game cache.
Even though, I found the right Baldur.ini file but it was in a different location then where the game icon was...
Anyway, I think I have it fixed now (if anything I can pull up the CLUA Console...)
TY Elminster~
My folder is set to read only. I go to properties uncheck read only, click apply and ok. however, when i reopen the folder , read only is still "checked"???
My folder is set to read only. I go to properties uncheck read only, click apply and ok. however, when i reopen the folder , read only is still "checked"???
Tring to put cheat but don't work
CREATE TABLE options (
section string,
name string,
value string
);
INSERT INTO options ROWS (
'Program Options', 'Debug Mode', '1',
'Fonts', 'ko_KR', 'UNBOM',
'Fonts', 'zh_CN', 'SIMSUN',
'Fonts', 'ja_JP', 'MSGOTHIC',
'Fonts', 'ru_RU', 'PERMIAN',
'Fonts', 'uk_UA', 'PERMIAN',
'Window', 'Full Screen', '1',
'Graphics', 'version', '4.4.0 - build XXXX',
'Graphics', 'renderer', 'GeForce GTX 760/PCIe/SSE2',
'Graphics', 'vendor', 'NVIDIA Corporation',
'MOVIES', 'LOGO', '1',
'MOVIES', 'INTRO', '1',
'Game Options', 'Footsteps', '1',
'Program Options', 'Debug Mode', '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', '0',
'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', 'Suppress Extra Difficulty Damage', '0',
'Game Options', 'Quick Item Mapping', '1',
'Game Options', 'Environmental Audio', '1',
'Game Options', 'Heal Party on Rest', '0',
'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', 'Color Circles', '1',
'Graphics', 'Scale UI', '1',
'Graphics', 'Zoom Lock', '0',
'Game Options', 'Over Confirm Everything', '0',
'Game Options', 'Show Learnable Spells', '1',
'Game Options', 'Render Actions', '0',
'Game Options', 'Confirm Dialog', '0',
'Multiplayer', 'Disable Banters', '1',
'Program Options', 'Disable Cosmetic Attacks', '0',
'Program Options', 'Debug Mode', '1',
'Game Options', 'Render Travel Regions', '0',
'Game Options', 'Pausing Map', '0',
'Game Options', 'Extra Feedback', '0',
'Game Options', 'Filter Games', '1',
'Game Options', 'All Learn Spell Info', '0',
'Graphics', 'Hardware Mouse Cursor', '1',
'Game Options', 'Maximum HP', '1',
'Game Options', 'Show Character HP', '1',
'Game Options', 'Nightmare Mode', '0',
'Game Options', '3E Thief Sneak Attack', '0',
'Game Options', 'Cleric Ranger Spells', '1',
'Program Options', 'Font Name', '',
'Program Options', 'Debug Mode', '1',
'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',
'Fonts', 'Zoom', '130',
'Program Options', 'Volume Movie', '90',
'Program Options', 'Volume Music', '40',
'Program Options', 'Volume Voices', '100',
'Program Options', 'Volume Ambients', '40',
'Program Options', 'Debug Mode', '1',
'Program Options', 'Volume SFX', '80',
'Debug Mode=1
'Game Options', 'Last Save TOB', '000000003-Auto-Save-TOB',
'MOVIES', 'SARADUSH', '1',
'MOVIES', 'DEATHAND', '1',
'MOVIES', 'INTRO15F', '1',
'Multiplayer', 'Last Protocol Used', '1',
'Window', 'Maximized', '0',
'Multiplayer', 'TCP/IP Address', '25.105.172.44',
'Multiplayer', 'Player Name', 'peppino',
'Multiplayer', 'Session Password', 'rotondaclan',
'MOVIES', 'BLACKPIT', '1'
);