-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
#library "myproject" | ||
|
||
// Tell NewTid what is the first tid it may use: | ||
#define TIDALLOCSTART 15000 | ||
|
||
// Your project's script numbers. | ||
// Your project's scripts: | ||
#define myproject_errorhandler 701 | ||
|
||
// Tell ACSUtils which script to send errors to: | ||
// ACSUtils settings: | ||
#define TIDALLOCSTART 15000 | ||
#define ACSUTILS_ERROR_HANDLER myproject_errorhandler | ||
|
||
// Includes. | ||
// Includes: | ||
#include "zcommon.acs" | ||
#include "acsutils.acs" | ||
|
||
// Your project's error handler | ||
// Your project's error handler: | ||
script myproject_errorhandler (int type, int message) | ||
{ | ||
Log(s:"error: ", s:message); | ||
printbold(s:"error: ", s:message); | ||
} | ||
|
||
// Your project's code follows. |