PoA_PRC8/_module/nss/deaththrone.nss

12 lines
241 B
Plaintext
Raw Normal View History

2022-10-07 14:20:31 -04:00
void main()
{
object oChair=OBJECT_SELF;
object oPC = GetLastUsedBy();
AssignCommand(GetLastUsedBy(),ActionSit(oChair));
effect eDeath = EffectDeath(TRUE, TRUE);
ApplyEffectToObject(DURATION_TYPE_INSTANT, eDeath, oPC);
}