Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
16 lines
283 B
Plaintext
16 lines
283 B
Plaintext
void main()
|
|
{
|
|
object oObject=GetEnteringObject();
|
|
|
|
if (GetIsObjectValid(oObject)&&GetIsPC(oObject))
|
|
|
|
{
|
|
SetLocalObject(GetNearestObjectByTag("PR_humphrey",OBJECT_SELF),"interrupter",oObject);
|
|
SignalEvent(GetNearestObjectByTag("PR_humphrey",OBJECT_SELF),EventUserDefined(30));
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|