UW2_PRC8/_module/nss/welltalks2pc.nss
Jaysyn904 5197ad9a4d Initial upload
Initial upload
2023-09-25 20:24:01 -04:00

23 lines
317 B
Plaintext

string sDeny;
//Put this script OnUsed
void main()
{
object oPC = GetLastUsedBy();
if (!GetIsPC(oPC)) return;
if (GetGold(oPC) < 100000)
{
sDeny="You need to have a lot of gold on you to use the well!";
SendMessageToPC(oPC, sDeny);
return;
}
ActionStartConversation(oPC, "wishingwellpoptk");
}