CLUAConsole
From Scratchpad
CLUAConsole is a tool used to change various things in the game. It can teleport the party, increase money and Experience, create items and people, et cetera.
To enable CLUAConsole, open Baldur.ini in Notepad or another text editor. Under Game options, add the line Cheats=1 (for Baldur's Gate I), or under Program Options, enter Debug Mode=1 (for Baldur's Gate II). You can now press CTRL+Tab (for BGI) or CTRL+Space (for BGII) in the game itself to open the console. Every command line starts with CLUAConsole:.
[edit] General code lines
- Adjust Experience
You can set the Experience of selected members of your party to any number (#), though the Experience Cap limits this.
CLUAConsole:SetCurrentXP("#")
- Adjust gold
Gives you # gold.
CLUAConsole:AddGold("#")
- Explore the entire map.
CLUAConsole:ExploreArea()
- Move your party to location number #.
CLUAConsole:MoveToArea("#")
- Teleport selected party members to cursor position.
CLUAConsole:Cheats:Hans()
[edit] Creature creation
This code allows you to spawn creature X near your party (cursor position?). This is very handy, since it can fix broken quests.
CLUAConsole:CreateCreature("X")
