11 lines
173 B
Plaintext
11 lines
173 B
Plaintext
|
|
||
|
void main()
|
||
|
{
|
||
|
// Give the speaker some gold
|
||
|
GiveGoldToCreature(GetPCSpeaker(), 350);
|
||
|
|
||
|
// Give the speaker some XP
|
||
|
GiveXPToCreature(GetPCSpeaker(), 250);
|
||
|
|
||
|
}
|