23 lines
317 B
Plaintext
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");
|
||
|
|
||
|
}
|