Modme Forums

Can I call a flag to turn the power back off?

Game Modding | Call of Duty: Black Ops 3 | Scripting


Zixology:

Trying to make a script that can essentially toggle power on and off. Was wondering if there's a flag I can call for it or something.


KillJoy:

level flag::set("power_on"); //turn on
level flag::clear("power_on"); //turn off
level flag::wait_till("power_on"); // wait until


Zixology:

level flag::set("power_on"); //turn on
level flag::clear("power_on"); //turn off
level flag::wait_till("power_on"); // wait until

Many thanks my guy. :)