Respawn at place of Death

Everything having to do with OpenMW's TES3MP branch.
Post Reply
Frostmourn
Posts: 7
Joined: 22 Jan 2022, 16:07

Respawn at place of Death

Post by Frostmourn »

Am currently trying to run my own server using version 0.8.1.
I would like the server to be somewhat forgiving for new players, hence I would like a character to respawn at the place of death, without any penalty.
I've disabled temple respawn, however respawn is still respawning at the default Balmora temple.
Anyone know how I can change this to a respawn at the place of death?
davidcernat
Posts: 256
Joined: 19 Jul 2016, 01:02

Re: Respawn at place of Death

Post by davidcernat »

Use these values in config.lua:
config.defaultRespawn = nil
config.respawnAtImperialShrine = false
config.respawnAtTribunalTemple = false
There's a line you need to change in serverCore.lua that's related to the server details in the server browser. (If you don't change it, the server will crash.)

Find this line in serverCore.lua:
respawnCell = config.defaultRespawn.cellDescription
Turn it into this:
respawnCell = "none"
Frostmourn
Posts: 7
Joined: 22 Jan 2022, 16:07

Re: Respawn at place of Death

Post by Frostmourn »

Thanks for the reply David and the clear instruction.
Made the changes you wrote, and respawning on the spot works fine now.
Post Reply