Aschbourne_PRC8/_module/nss/on_enter_buildng.nss
GetOffMyYarn 69879d6957 Areas and Fixes
Added CCOH and missing areas
Changed some areas to be craftable,
Fixed some on death issues,
Fixed the Gaurd
2024-08-30 11:38:44 -04:00

16 lines
523 B
Plaintext

#include "vamp_friends"
void main()
{
object oPC = GetEnteringObject();
// if the character is a valid player character, run the following...
if (GetIsObjectValid(oPC))
{
//If entering object is Undead, make it friendly towards every vampire on module.
//If entering object is Vampire, make every undead on area friendly towards entering vampire.
vamp_friends(oPC);
PrintString("on_enter: " + GetName(oPC) + " (is a valid object) entering "+GetName(GetArea(oPC)));
}
}