12 lines
231 B
Plaintext
12 lines
231 B
Plaintext
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
//SetLocalInt(oPC, "haggle", 0);
|
|
CreateItemOnObject("insurance", oPC);
|
|
TakeGoldFromCreature(20000, oPC);
|
|
SetLocalInt(oPC, "refund", 20000);
|
|
PlaySound("it_coins");
|
|
}
|