20 lines
425 B
Plaintext
20 lines
425 B
Plaintext
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_deathdeath4", OBJECT_SELF);
|
|
}
|
|
else
|
|
{
|
|
ExecuteScript("deathdeath2a", OBJECT_SELF);
|
|
}
|
|
}
|