Originally Posted by Baardvark
Supposedly press CTRL+SHIFT+R

Thanks for the quick answer but unfortunately it doesn't work. This is probably because I'm making a standalone mod. I checked the word document "Creating Combat" and tested the different shortcuts and none of them worked on my module.

*Edited Answer*
I do have a work around that works. I made a script that I attached to my character that sends a CharacterEvent to a Osiris. I can de-activate it directly in the editor by modifying the Active variable so I don't have to modify or remove the script if I don't need it anymore.

Story Script

Code
PROC
	ProcResurrect((CHARACTER)_CharacterToResurrect)
AND
	DB_Resurrect(_CharacterToResurrect)
THEN
	CharacterResurrect(_CharacterToResurrect);

IF
	CharacterEvent(_Character,"Resurrect")
THEN
	ProcResurrect(_Character);




Character Script

Code
#INCLUDE Base
INIT
USING Base
CHARACTER:__Me
EXTERN INT:%Active = 1 

EVENTS

EVENT Init
ON
	OnInit()
	
ACTIONS
	IF "c1&c2"
		CharacterIsDead(__Me)
		IsEqual(%Active,1)
	THEN
		CharacterResurrect(__Me)
	ENDIF
	
EVENT UponDying
ON
	OnDie(__Me,_,_,_)
ACTIONS
	IF "c1"
		IsEqual(%Active,1)
	THEN
		CharacterEvent(__Me,"Resurrect")
	ENDIF





Last edited by TheMasterRat; 23/12/14 07:45 PM.