12 lines
176 B
Plaintext
12 lines
176 B
Plaintext
|
|
|
|
void main()
|
|
{
|
|
// Give the speaker some gold
|
|
GiveGoldToCreature(GetPCSpeaker(), 5000);
|
|
|
|
// Give the speaker some XP
|
|
GiveXPToCreature(GetPCSpeaker(), 5000);
|
|
|
|
}
|