Permanent water breathing
Posted: Tue Jun 24, 2025 1:11 pm
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!
Official Legend of Grimrock Forums
http://mail.grimrock.net/forum/
Code: Select all
for i = 1, 4 do party.party:getChampion(i):setConditionValue("water_breathing", math.huge) endCode: Select all
for i = 1, 4 do party.party:getChampion(i):setConditionValue("water_breathing", 0) endCode: Select all
party.party:getChampion(X):setConditionValue("water_breathing", math.huge) endThis 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) endindividualCode: Select all
for i = 1, 4 do party.party:getChampion(i):setConditionValue("water_breathing", 0) endwhere X = champion number from 1 to 4Code: Select all
party.party:getChampion(X):setConditionValue("water_breathing", math.huge) end