14 lines
287 B
Plaintext
14 lines
287 B
Plaintext
|
void main()
|
||
|
{
|
||
|
// Get the PC who is in this conversation.
|
||
|
object oPC = GetPCSpeaker();
|
||
|
object oSelf = OBJECT_SELF;
|
||
|
|
||
|
string sTag = GetTag(oSelf);
|
||
|
|
||
|
|
||
|
// Give 2-8 gold to the PC.
|
||
|
GiveGoldToCreature(oPC, d6(1)+2);
|
||
|
SetLocalInt(oPC, "FoundCoins"+sTag, 1);
|
||
|
}
|