Amon_PRC8/_module/nss/lycanpayload.nss

15 lines
294 B
Plaintext
Raw Permalink Normal View History

2025-04-03 19:00:46 -04:00
void main()
{
object oItem = GetObjectByTag("LycanFire");
object oPC = GetLastKiller();
object oDoor = GetObjectByTag("LycanForceDoor");
if(GetIsObjectValid(oItem) == TRUE)
{
SetLocked(oDoor,FALSE);
ActionOpenDoor(oDoor);
AssignCommand(oPC, PlaySound("as_hr_xwdrnoise5"));
}
}