Page 1 of 1

Permanent water breathing

Posted: Tue Jun 24, 2025 1:11 pm
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!

Re: Permanent water breathing

Posted: Tue Jun 24, 2025 2:16 pm
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

Re: Permanent water breathing

Posted: Tue Jun 24, 2025 3:58 pm
by tenmice
Thank you so much!

Re: Permanent water breathing

Posted: Mon Jun 30, 2025 5:14 pm
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.