16 lines
216 B
Plaintext
16 lines
216 B
Plaintext
void main()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
object oItem;
|
|
oItem = GetItemPossessedBy(oPC, "Bloody_Spear_Tip");
|
|
|
|
if (GetIsObjectValid(oItem))
|
|
DestroyObject(oItem);
|
|
|
|
CreateItemOnObject("gnomishtweezers", oPC);
|
|
|
|
}
|
|
|