Initial Commit

Initial Commit
This commit is contained in:
Jaysyn904
2025-04-03 11:24:16 -04:00
parent 3ba3cf1b81
commit 5e558169a0
6086 changed files with 1502996 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
void main()
{
object oMod = GetModule();
int od1 = GetLocalInt(oMod, "d1");
int od2 = GetLocalInt(oMod, "d2");
int od3 = GetLocalInt(oMod, "d2a");
int od4 = GetLocalInt(oMod, "d3");
int od5 = GetLocalInt(oMod, "d4");
int od6 = GetLocalInt(oMod, "d5");
if ((od1==1)||(od2==1)||(od3==1)||(od4==1)||(od5==1)||
(od6==1))
{
ExecuteScript("b_deathdeath3", OBJECT_SELF);
}
else
{
ExecuteScript("deathdeath3", OBJECT_SELF);
}
}