Initial Upload

Initial Upload
This commit is contained in:
Jaysyn904
2023-09-21 21:20:34 -04:00
parent d3f23f8b3c
commit 94990edc60
5734 changed files with 6324648 additions and 0 deletions

19
_module/nss/pukingnpc.nss Normal file
View File

@@ -0,0 +1,19 @@
// PUKE IT UP!!!!
// You didn't ask for it...but you got it anyway.
// This is my first script from scratch.
// Created by DM_Rothgar
// Its a PUKING script!!!
void main()
{
effect ePuke = EffectVisualEffect(VFX_COM_CHUNK_YELLOW_SMALL);
object oPuker= GetNearestObjectByTag("BalorKeeper");
string sPukeTalk = "BBBLLLLAAAARRRRGGGGHHHHH!!!!";
string sPukeApology = "I'm so sorry!";
ClearAllActions();
AssignCommand(OBJECT_SELF, ActionPlayAnimation(ANIMATION_LOOPING_MEDITATE));
AssignCommand(OBJECT_SELF, ActionSpeakString(sPukeTalk));
DelayCommand(2.0,ApplyEffectToObject(DURATION_TYPE_TEMPORARY, ePuke, OBJECT_SELF, 1.0));
DelayCommand(5.0, ActionSpeakString(sPukeApology));
}