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!
Post Reply