15 lines
226 B
Plaintext
15 lines
226 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetLastPerceived();
|
||
|
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
|
||
|
if (!GetLastPerceptionSeen()) return;
|
||
|
if (GetItemPossessedBy(oPC, "newbiequest")== OBJECT_INVALID)
|
||
|
return;
|
||
|
|
||
|
SetLocalInt(oPC, "mardoquest", 3);
|
||
|
|
||
|
}
|