MMD_PRC8/_module/nss/use_drink_p.nss
Jaysyn904 adeff59f82 Initial commit
Initial commit.
2024-08-02 23:18:00 -04:00

37 lines
1010 B
Plaintext

void main()
{
object oPC = GetLastUsedBy();
int iDrank = GetLocalInt(oPC,"drank");
string sName = GetName(OBJECT_SELF);
int iGood = d20(1);
if (iDrank == 1)
{
SendMessageToPC(oPC,"Although you are not thirsty, you take a drink from the "+sName);
SendMessageToPC(oPC,"The water from the "+sName+" is very unappealing.");
if (iGood >=16)
{
effect eEffect = EffectPoison(POISON_ARSENIC);
ApplyEffectToObject(DURATION_TYPE_INSTANT,eEffect,oPC);
SendMessageToPC(oPC,"You are sick. The water you drank isn't safe.");
}
}
else
{
SendMessageToPC(oPC,"You take a drink from the "+sName+" and it tastes bad.");
SetLocalInt(oPC,"drank",1);
if (iGood >=16)
{
effect eEffect = EffectPoison(POISON_ARSENIC);
ApplyEffectToObject(DURATION_TYPE_INSTANT,eEffect,oPC);
SendMessageToPC(oPC,"You are sick. The water you drank isn't safe.");
}
}
}