9 lines
187 B
Plaintext
9 lines
187 B
Plaintext
void Revive(int i, string s, location l)
|
|
{
|
|
CreateObject(i,s ,l );
|
|
}
|
|
void main()
|
|
{
|
|
DelayCommand(5.0f,Revive(OBJECT_TYPE_PLACEABLE,GetTag(OBJECT_SELF),GetLocation(OBJECT_SELF)));
|
|
}
|