Page 1 of 1

Respawn at place of Death

Posted: 30 May 2022, 19:56
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?

Re: Respawn at place of Death

Posted: 30 May 2022, 22:33
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"

Re: Respawn at place of Death

Posted: 31 May 2022, 10:49
by Frostmourn
Thanks for the reply David and the clear instruction.
Made the changes you wrote, and respawning on the spot works fine now.