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

23 lines
297 B
Plaintext

string sDeny;
//Put this script OnUsed
void main()
{
object oPC = GetLastUsedBy();
if (!GetIsPC(oPC)) return;
if (GetGold(oPC) < 5000000)
{
sDeny="You cannot use the wheel at this time!!";
SendMessageToPC(oPC, sDeny);
return;
}
ActionStartConversation(oPC, "wheelconv1");
}