Oliver Hope 261 Posted January 16, 2019 Hey So i quite quickly worked out that if you have an error in your code nothing after it would run, now what id like to know id what happens when you have an error in an instruction, will the code after the you call the instruction run if you have an error in it? Share this post Link to post Share on other sites
Indomitus 388 Posted January 16, 2019 Everything stops when the script encounters an error, no matter where the error is, even if that error takes place in a separate method or instruction that is being called. I've seen this too many times to count. (If there is more than one running at the same time, I think only the one with the error will stop, but I'm not 100% sure of that one.) Share this post Link to post Share on other sites
Oliver Hope 261 Posted January 17, 2019 8 hours ago, Indomitus said: Everything stops when the script encounters an error, no matter where the error is, even if that error takes place in a separate method or instruction that is being called. I've seen this too many times to count. (If there is more than one running at the same time, I think only the one with the error will stop, but I'm not 100% sure of that one.) Awesome thank you! That helps me with debugging Share this post Link to post Share on other sites