9 lines
207 B
Plaintext
9 lines
207 B
Plaintext
|
void main()
|
||
|
{
|
||
|
object oChest=GetObjectByTag("CG_CHEST");
|
||
|
object oPC=GetPCSpeaker();
|
||
|
object oItem;
|
||
|
TakeGoldFromCreature(50,oPC,TRUE);
|
||
|
oItem=CreateItemOnObject("nw_it_gold001",oChest,50);
|
||
|
}
|