12 lines
270 B
Plaintext
12 lines
270 B
Plaintext
|
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);
|
||
|
}
|