11 lines
222 B
Plaintext
11 lines
222 B
Plaintext
//:: FileName pay5000
|
|
// PC pays 5000 gp to NPC
|
|
|
|
void main()
|
|
{
|
|
|
|
// Remove some gold from the player
|
|
TakeGoldFromCreature(100000, GetPCSpeaker(), TRUE);
|
|
CreateItemOnObject("TrinDocuments", GetPCSpeaker(), 1);
|
|
}
|