Hi guys,
So being underwater is a little annoying and frustrating to me. I´d really like to hear the communities´ perspective on that. But, for me it´s not been fun.
I wanted to ask, because I have yet to find a way to resolve it...
Is there any way to breathe underwater or nullify the danger of drowning?
How do I breathe underwater? Or extend underwater time?
-
- Posts: 18
- Joined: Wed Apr 08, 2020 8:16 pm
Re: How do I breathe underwater? Or extend underwater time?
Not in Isle of Nex. Some custom dungeons have water breathing spells/items/etc., but in the main game you'll just have to put up with it.
Grimrock 1 dungeon
Grimrock 2 resources
I no longer answer scripting questions in private messages. Please ask in a forum topic or this Discord server.
Grimrock 2 resources
I no longer answer scripting questions in private messages. Please ask in a forum topic or this Discord server.
- Dr.Disaster
- Posts: 2876
- Joined: Wed Aug 15, 2012 11:48 am
Re: How do I breathe underwater? Or extend underwater time?
The main game has no underwater breath option.elcampesinow wrote: ↑Mon Apr 13, 2020 3:43 am Is there any way to breathe underwater or nullify the danger of drowning?
The time you can stay underwater increases with character level and the size of your energy pool.
Once your energy starts to drop it's time to go for air .. or down energy potions. FAST.
- Sir Tawmis
- Posts: 989
- Joined: Mon Jul 30, 2012 8:15 am
- Contact:
Re: How do I breathe underwater? Or extend underwater time?
I can't remember if this was LOG2 or a custom module I was playing...
But I thought there was "Energy Potions" you can quaff to extend your time underwater.
Also if you plan on going underwater... be aware, you may not be alone down there... and may need something to use or rely solely on magic...
But I thought there was "Energy Potions" you can quaff to extend your time underwater.
Also if you plan on going underwater... be aware, you may not be alone down there... and may need something to use or rely solely on magic...
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.
Re: How do I breathe underwater? Or extend underwater time?
A script like this was probably used in a custom mod Tawmis. This is the script I used to add water potions to my Mod, pilfered and modified from somewhere on these forums in ages past. Sorry if I can't recall who I lifted the original script from.
There is no way to breathe underwater though in Vanilla LoG2 sadly.
Code: Select all
defineObject{
name = "potion_water_breathing",
baseObject = "base_item",
components = {
{
class = "Model",
model = "assets/models/items/flask.fbx",
},
{
class = "Item",
uiName = "Elixer of Tan'thar",
gfxIndex = 144,
description = "A swirling elixer of salty enchanted water from the Sea of Tan'thar, it allows it's inbiber to breathe underwater a short time, but must be consumed before one submerges.",
weight = 0.3,
stackable = true,
},
{
class = "UsableItem",
sound = "consume_potion",
onUseItem = function(self,champion)
champion:setCondition("water_breathing", 220)
end,
}
},
}
My slow going projects...
viewtopic.php?f=14&t=4538&p=59753#p59753
viewtopic.php?f=14&t=4538&p=59753#p59753