21 lines
312 B
Plaintext
21 lines
312 B
Plaintext
|
void main()
|
||
|
{
|
||
|
|
||
|
|
||
|
ExecuteScript("ke_lukigen",OBJECT_SELF);
|
||
|
|
||
|
object oPC = GetLastOpenedBy();
|
||
|
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
|
||
|
if (GetItemPossessedBy(oPC, "PulPrivate2")== OBJECT_INVALID)
|
||
|
return;
|
||
|
|
||
|
object oItem;
|
||
|
oItem = GetItemPossessedBy(oPC, "PulPrivate2");
|
||
|
|
||
|
if (GetIsObjectValid(oItem))
|
||
|
DestroyObject(oItem);
|
||
|
|
||
|
}
|