12 lines
394 B
Plaintext
12 lines
394 B
Plaintext
#include "pcinclude"
|
|
void main()
|
|
{
|
|
object oPC = GetPCSpeaker();
|
|
// Remove items from the player's inventory
|
|
int nPelts = DestroyItemsInInventory(oPC, "rcq_item_02", 9999);
|
|
int nPelts2 = DestroyItemsInInventory(oPC, "rcq_item_03", 9999);
|
|
int nPelts3 = DestroyItemsInInventory(oPC, "rcq_item_04", 9999);
|
|
int nPelts4 = DestroyItemsInInventory(oPC, "rcq_item_05", 9999);
|
|
|
|
}
|