Permanent water breathing
Permanent water breathing
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
Hi, Just type in console
To disable
individual
where X = champion number from 1 to 4
Code: Select all
for i = 1, 4 do party.party:getChampion(i):setConditionValue("water_breathing", math.huge) end
Code: Select all
for i = 1, 4 do party.party:getChampion(i):setConditionValue("water_breathing", 0) end
Code: Select all
party.party:getChampion(X):setConditionValue("water_breathing", math.huge) end
Re: Permanent water breathing
Thank you so much!
- Sir Tawmis
- Posts: 998
- Joined: Mon Jul 30, 2012 8:15 am
- Contact:
Re: Permanent water breathing
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.Slava wrote: ↑Tue Jun 24, 2025 2:16 pm Hi, Just type in consoleTo disableCode: Select all
for i = 1, 4 do party.party:getChampion(i):setConditionValue("water_breathing", math.huge) end
individualCode: Select all
for i = 1, 4 do party.party:getChampion(i):setConditionValue("water_breathing", 0) end
where X = champion number from 1 to 4Code: Select all
party.party:getChampion(X):setConditionValue("water_breathing", math.huge) end
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.
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.