Permanent water breathing

Ask for help about creating mods and scripts for Grimrock 2 or share your tips, scripts, tools and assets with other modders here. Warning: forum contains spoilers!
Post Reply
tenmice
Posts: 2
Joined: Tue Jun 24, 2025 12:56 pm

Permanent water breathing

Post by tenmice »

Hello everyone! I've never modded before, but I'm wondering if there's a simple way to turn off drowning in game for the whole party or individual characters. Thanks in advance!
User avatar
Slava
Posts: 73
Joined: Sun Aug 30, 2015 2:10 pm

Re: Permanent water breathing

Post by Slava »

Hi, Just type in console

Code: Select all

for i = 1, 4 do party.party:getChampion(i):setConditionValue("water_breathing", math.huge) end
To disable

Code: Select all

for i = 1, 4 do party.party:getChampion(i):setConditionValue("water_breathing", 0) end
individual

Code: Select all

party.party:getChampion(X):setConditionValue("water_breathing", math.huge) end
where X = champion number from 1 to 4
tenmice
Posts: 2
Joined: Tue Jun 24, 2025 12:56 pm

Re: Permanent water breathing

Post by tenmice »

Thank you so much!
User avatar
Sir Tawmis
Posts: 998
Joined: Mon Jul 30, 2012 8:15 am
Contact:

Re: Permanent water breathing

Post by Sir Tawmis »

Slava wrote: Tue Jun 24, 2025 2:16 pm Hi, Just type in console

Code: Select all

for i = 1, 4 do party.party:getChampion(i):setConditionValue("water_breathing", math.huge) end
To disable

Code: Select all

for i = 1, 4 do party.party:getChampion(i):setConditionValue("water_breathing", 0) end
individual

Code: Select all

party.party:getChampion(X):setConditionValue("water_breathing", math.huge) end
where X = champion number from 1 to 4
This is incredible. While the fear of drowning is a nice aspect, but if you're just trying to finish the game and get through the story, this is pretty cool.
Define ... 'Lost.' Neverending Nights - The Neverwinter Machinima that WILL make you laugh!
Also read: Legend of Grimrock: Destiny's Chance here on the forum! Check out the site I made for Legend of Grimrock: Destiny's Chance.
Post Reply