/mud/world/immortalcommand.py
Add the following function
def CmdResurrect(mob,args):
c = mob.character
if c.dead:
c.resurrect(0)
In the command array near the bottom add the new command
COMMANDS['RESURRECT']=CmdResurrect
That is it...type /imm resurrect and the selected character will be rezed. The command doesn't restore any EXP, but you can gain that back if needed...

