14 lines
209 B
Plaintext
14 lines
209 B
Plaintext
|
// * script: can_pay100
|
||
|
// * Does the PC have 100 gp?
|
||
|
// Use in [Text Appears When] tab of PC hiring dialog line.
|
||
|
|
||
|
#include "NW_I0_PLOT"
|
||
|
|
||
|
int StartingConditional()
|
||
|
{
|
||
|
return (HasGold(150,GetPCSpeaker()));
|
||
|
}
|
||
|
|
||
|
|
||
|
|