Initial commit

Initial commit.
This commit is contained in:
Jaysyn904
2024-08-02 23:18:00 -04:00
parent 779bee26ec
commit adeff59f82
3413 changed files with 2837434 additions and 0 deletions

15
_module/nss/use_drink.nss Normal file
View File

@@ -0,0 +1,15 @@
void main()
{
object oPC = GetLastUsedBy();
int iDrank = GetLocalInt(oPC,"drank");
string sName = GetName(OBJECT_SELF);
if (iDrank == 1)
SendMessageToPC(oPC,"Although you are not thirsty, you take a drink from the "+sName);
else
{
SendMessageToPC(oPC,"You take a drink from the "+sName);
SetLocalInt(oPC,"drank",1);
}
}