pull/97/head
Lojemiru 5 years ago
parent 8f392817d4
commit 56f2431085

@ -153,7 +153,7 @@ if (fadeout) {
if (spark_fadeout) {
if (spark_alpha > 0) spark_alpha -= 0.02;
}
alpha2 = !alpha2;
if (!global.sensitivitymode) alpha2 = !alpha2;
</string>
</argument>
</arguments>
@ -179,7 +179,7 @@ alpha2 = !alpha2;
<string>if (global.currentsuit &lt;= 1) {
if (!instance_exists(oEMPNoise)) {
instance_create(0, 0, oEMPNoise);
} else with (oEMPNoise) image_alpha = 1;
} else with (oEMPNoise) image_alpha = 1 - (0.5 * global.sensitivitymode);
}
</string>
</argument>

@ -28,7 +28,7 @@
<string>if (global.currentsuit &lt;= 1) {
if (!instance_exists(oEMPNoise)) {
instance_create(0, 0, oEMPNoise);
} else with (oEMPNoise) image_alpha = 1;
} else with (oEMPNoise) image_alpha = 1 - (0.5 * global.sensitivitymode);
}
</string>
</argument>

@ -28,6 +28,7 @@
<string>xoff = 0;
yoff = 0;
alarm[0] = 1;
image_alpha = 1 - (0.5 * global.sensitivitymode);
</string>
</argument>
</arguments>
@ -83,8 +84,10 @@ alarm[0] = 5;
<arguments>
<argument>
<kind>1</kind>
<string>xoff = floor(random(128));
yoff = floor(random(128));
<string>if (!global.sensitivitymode) {
xoff = irandom(128);
yoff = irandom(128);
}
image_alpha -= 0.1;
if (image_alpha &lt;= 0) instance_destroy();
with (oCharacter) chargebeam = 0;

@ -49,7 +49,12 @@ layer = 99;
<arguments>
<argument>
<kind>1</kind>
<string>falpha = random(1);
<string>if (global.sensitivitymode) {
falpha = 0.5;
}
else {
falpha = random(1);
}
event_user(0);
</string>
</argument>

Loading…
Cancel
Save