ItsMods

Full Version: If statement help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there anyway to make an if statement which is about when progress bar 100%?
Something like that:
Code:
if(progessbar == 100)
{
self sayall "YAY IT IS 100%";
}
(01-12-2011, 06:44)alistair3149 Wrote: [ -> ]Is there anyway to make an if statement which is about when progress bar 100%?
Something like that:
Code:
if(progessbar == 100)
{
self sayall "YAY IT IS 100%";
}

Code:
if(progressBar.bar.frac == 1)
{
    self sayall("YAY IT IS 100%");
}

This?