Initial commit

Initial commit.  Updated release archive.
This commit is contained in:
Jaysyn904
2024-06-13 15:08:33 -04:00
parent c0bd67a6a7
commit a6f6db7303
5236 changed files with 4203994 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
#include "cm_treat_include"
void main()
{
SetLocalInt(OBJECT_SELF, "buffing", 1);
DelayCommand(3.5, SetLocalInt(OBJECT_SELF, "buffing", 0));
CalcNegEff(OBJECT_SELF);
int nInt = GetLocalInt(OBJECT_SELF, "badeffects");
if (nInt==0)
{
ClearAllActions();
ActionSpeakString("There's nothing wrong with me right now...");
ActionPlayAnimation(ANIMATION_LOOPING_TALK_LAUGHING, 1.0f, 2.0f);
}
else
{
if (GetItemPossessedBy(OBJECT_SELF,"NW_IT_MPOTION001") != OBJECT_INVALID
|| GetItemPossessedBy(OBJECT_SELF,"NW_IT_MPOTION006") != OBJECT_INVALID
|| GetItemPossessedBy(OBJECT_SELF,"NW_IT_MPOTION011") != OBJECT_INVALID
|| GetItemPossessedBy(OBJECT_SELF,"NW_IT_MPOTION004") != OBJECT_INVALID
|| GetItemPossessedBy(OBJECT_SELF,"greaterrest") != OBJECT_INVALID)
{
TreatSelf(OBJECT_SELF);
}
else
{
ClearAllActions();
ActionSpeakString("I don't have any cleansing potions...");
ActionPlayAnimation(ANIMATION_LOOPING_TALK_PLEADING, 1.0f, 2.0f);
}
}
}