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