forked from ScriptedEvents/ScriptedEvents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathErrorCode.cs
More file actions
80 lines (58 loc) · 1.63 KB
/
ErrorCode.cs
File metadata and controls
80 lines (58 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
namespace ScriptedEvents.API.Enums
{
#pragma warning disable SA1602
public enum ErrorCode
{
AutoRun_Disabled = 100,
AutoRun_NotFound,
InvalidAction,
MultipleFlagDefs,
MultipleLabelDefs,
AutoRun_AdminEvent,
IOPermissionError,
IOError,
On_UnknownEvent,
On_IncompatibleEvent,
On_DisabledScript,
On_NotFoundScript,
On_UnknownError,
LEGACY_SafetyError,
IOHelpPermissionError,
IOHelpError,
InvalidActionUsage,
LEGACY_InvalidActionUsage,
ParameterError_Option,
ParameterError_Number,
ParameterError_Condition,
ParameterError_LessThanZeroNumber,
ParameterError_RoleType,
ParameterError_Players,
ParameterError_Rooms,
ParameterError_CassieNoAnnc,
ParameterError_TooManyPlayers,
UnknownError,
IOMissing,
CustomCommand_NoName,
CustomCommand_NoScripts,
MissingArguments,
LEGACY_InvalidPlayerVariable,
InvalidVariable,
InvalidPlayerVariable,
InvalidInteger,
IndexTooLarge,
CustomCommand_MultCooldowns,
InvalidNumber,
UnsupportedArgumentVariables,
ScriptJumpFailed,
VariableReplaceError,
UnknownActionError,
InvalidDoor,
InvalidLift,
InvalidEnumGeneric,
InvalidStringVariable,
InvalidCharacter,
InvalidRoleTypeOrTeam,
InvalidBoolean,
}
#pragma warning restore SA1602
}