11 lines
173 B
Plaintext
11 lines
173 B
Plaintext
|
// * script: pay100
|
||
|
// * Removes 100 gp from PC.
|
||
|
// Use in [Actions Taken] tab of PC hiring dialog line.
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
TakeGoldFromCreature(150, GetPCSpeaker(), TRUE);
|
||
|
}
|
||
|
|
||
|
|