LSPDFR-API
LSPDFR-API copied to clipboard
Boolean to disable callouts
Hi LMS/Sam!
Is there any way you could put a bool that toggles the Available for Calls option?
In L.S. Noire I've tried using this:
private static void CalloutFiber() { while (true) { if (Functions.IsCalloutRunning() == true) { Functions.StopCurrentCallout(); } GameFiber.Yield(); } }
But that calls the End() and some callouts don't have checks in their End() so it crashes the game... (Bad callout devs, haha). Thanks!