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

View File

@@ -0,0 +1,24 @@
//::///////////////////////////////////////////////
//:: Name x2_def_ondeath
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Default OnDeath script
*/
//:://////////////////////////////////////////////
//:: Created By: Keith Warner
//:: Created On: June 11/03
//:://////////////////////////////////////////////
void main()
{
int bAlreadyDead = GetLocalInt(OBJECT_SELF, "alreadyDead");
if(!bAlreadyDead)
{
SpeakString("Beaten?! This is impossible, I am a God!", TALKVOLUME_SHOUT);
SetLocalInt(OBJECT_SELF, "alreadyDead", TRUE);
}
ExecuteScript("lod_death_40shp", OBJECT_SELF);
// ExecuteScript("nw_c2_default7", OBJECT_SELF);
}