-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SmartScripts] Propertly saving and loading WAIT action
- Loading branch information
Showing
7 changed files
with
200 additions
and
128 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
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
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
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
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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace WDE.SmartScriptEditor.Models | ||
{ | ||
// this is bad we use hardcoded constants here :/ | ||
public static class SmartConstants | ||
{ | ||
public const int SOURCE_NONE = 0; | ||
public const int TARGET_NONE = 0; | ||
public const int EVENT_TRIGGER_TIMED = 59; | ||
public const int EVENT_LINK = 61; | ||
public const int ACTION_TRIGGER_TIMED = 67; | ||
public const int ACTION_WAIT = 9999; | ||
public const string COMMENT_WAIT = "-meta_wait"; | ||
} | ||
} |
Oops, something went wrong.