| 5825 | return TRUE; |
| 5826 | } |
| 5827 | BOOL CheckScriptSyntax(INTERACTIVE_OBJ * io) |
| 5828 | { |
| 5829 | if (SYNTAXCHECKING == 0) return TRUE; |
| 5830 | |
| 5831 | long s1 = LaunchScriptCheck(&io->script, io); |
| 5832 | LastErrorPopupNO1 = LastErrorPopup; |
| 5833 | long s2 = LaunchScriptCheck(&io->over_script, io); |
| 5834 | LastErrorPopupNO2 = LastErrorPopup; |
| 5835 | |
| 5836 | if (s1 + s2 < 2) return FALSE; |
| 5837 | |
| 5838 | return TRUE; // no errors. |
| 5839 | } |
| 5840 | long Event_Total_Count = 0; |
| 5841 | |
| 5842 | void ARX_SCRIPT_Init_Event_Stats() |
no test coverage detected