11 lines
279 B
Plaintext
11 lines
279 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oPC = GetExitingObject();
|
||
|
object oKey = GetItemPossessedBy(oPC, "nk_fp_keybronze");
|
||
|
if (GetIsObjectValid(oKey))
|
||
|
{
|
||
|
object oBrain = GetNearestObjectByTag("nk_fp_brain", OBJECT_SELF, 1);
|
||
|
SetLocalInt(oBrain, "BRONZE", 0);
|
||
|
}
|
||
|
}
|