Torm wrote:5.How does the force field work?
Nightmare wrote:Was it inspired by System Shock 2?
Tormentor667 wrote:@All - Can someone give me a scipt that executes "script 8" after all monsters with the TID 77 are dead!?
#include "zcommon.acs"
script # OPEN
{
if (Thingcount (77, 0) == 0)
{
ACS_Execute (8, MAP#, 0, 0, 0);
}
Delay (1);
restart;
}
while(thingcount(77,0)>0)
{
delay(35);
}
ACS_Execute(8,0);
Bio Hazard wrote:
SCRIPTS:
- Code: Select all • Expand view
while(thingcount(77,0)<0)
{
delay(35);
}
ACS_Execute(8,0);
TheDarkArchon wrote:No, Kirby. The script is checking every second to see if the number of objects with Thing Tag 77 is 0 or less. If it isn't then Script 8 is executed.
While(ThingCount(77,0)<0)
Users browsing this forum: No registered users and 3 guests