PGCC_PRC8/_module/nss/vat_duplicate.nss

12 lines
270 B
Plaintext
Raw Normal View History

2024-10-09 14:17:22 -04:00
void main()
{
object oPC = GetPCSpeaker();
object oItem = GetLocalObject(oPC, "MODIFY_ITEM");
int iValue = GetGoldPieceValue(oItem);
int iGold = GetGold(oPC);
CopyObject(oItem, GetLocation(oPC), oPC);
TakeGoldFromCreature(iValue, oPC, TRUE);
}