15 lines
301 B
Plaintext
15 lines
301 B
Plaintext
#include "hc_inc_remeff"
|
|
#include "chr_inc"
|
|
#include "faction_inc"
|
|
void main()
|
|
{
|
|
object oPC=GetExitingObject();
|
|
if (!GetIsPC(oPC))
|
|
return;
|
|
|
|
SetLocalInt (oPC, "FromFugue", 1);
|
|
SetPlotFlag(oPC,FALSE);
|
|
sql_SetPCDead(chr_GetPCID(oPC), FALSE);
|
|
fctn_UpdateReputation(oPC);
|
|
}
|