19 lines
331 B
Plaintext
19 lines
331 B
Plaintext
|
|
||
|
void main()
|
||
|
{
|
||
|
// Give the speaker the items
|
||
|
// CreateItemOnObject("ringofthebizarre", GetPCSpeaker(), 1);
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
object oTarget;
|
||
|
oTarget = GetObjectByTag("rngbones");
|
||
|
|
||
|
DestroyObject(oTarget, 6.0);
|
||
|
|
||
|
// Give the speaker the items
|
||
|
CreateItemOnObject("ringofthebizarre", GetPCSpeaker(), 1);
|
||
|
|
||
|
|
||
|
}
|