Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
23 lines
445 B
Plaintext
23 lines
445 B
Plaintext
void main()
|
|
{
|
|
object oObject=GetInventoryDisturbItem();
|
|
object oPC=GetLastUsedBy();
|
|
object oInv;
|
|
string sObjectResRef=(GetResRef(oObject));
|
|
|
|
if (GetInventoryDisturbType()==(INVENTORY_DISTURB_TYPE_ADDED))
|
|
{
|
|
if ((GetBaseItemType(oObject)) != (BASE_ITEM_KEY))
|
|
{
|
|
CreateItemOnObject(sObjectResRef, oPC, 1);
|
|
DestroyObject(oObject);
|
|
SendMessageToPC(oPC, "Please only put tavern room keys in this bowl");
|
|
}
|
|
}
|
|
else
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
|