22 lines
423 B
Plaintext
22 lines
423 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("bossdeath2c", OBJECT_SELF);
|
|
}
|
|
else
|
|
{
|
|
ExecuteScript("bossdeath2", OBJECT_SELF);
|
|
}
|
|
}
|
|
|