11 lines
158 B
Plaintext
11 lines
158 B
Plaintext
//:: FileName pay500
|
|
// PC pays 500 gp to NPC
|
|
|
|
void main()
|
|
{
|
|
|
|
// Remove some gold from the player
|
|
TakeGoldFromCreature(500, GetPCSpeaker(), TRUE);
|
|
|
|
}
|