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!