summaryrefslogtreecommitdiff
path: root/npc/functions/util.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-05-02 10:56:33 -0300
committerJesusaves <cpntb1@ymail.com>2019-05-02 10:56:33 -0300
commit397949a0e46fdc813b195a04f02972e8d089ce7b (patch)
treeae8409b3b5c927a1f9123f39a9b19e1439d1f7d2 /npc/functions/util.txt
parent46bbdfe15230da4d8abe41faf04c32fb42c3ad84 (diff)
downloadserverdata-397949a0e46fdc813b195a04f02972e8d089ce7b.tar.gz
serverdata-397949a0e46fdc813b195a04f02972e8d089ce7b.tar.bz2
serverdata-397949a0e46fdc813b195a04f02972e8d089ce7b.tar.xz
serverdata-397949a0e46fdc813b195a04f02972e8d089ce7b.zip
Move Exception() from Util to Main
Diffstat (limited to 'npc/functions/util.txt')
-rw-r--r--npc/functions/util.txt45
1 files changed, 0 insertions, 45 deletions
diff --git a/npc/functions/util.txt b/npc/functions/util.txt
index 1c6652a7e..df3dd0dd6 100644
--- a/npc/functions/util.txt
+++ b/npc/functions/util.txt
@@ -651,51 +651,6 @@ function script gettimeparam {
}
-// Something went wrong and must be reported (I tried to keep a syntax close to python)
-// Exception( BugID, {Flags{, Return Code}} )
-function script Exception {
- // Fill variable
- .@msg$=getarg(0);
- .@gf=getarg(1,RB_DEFAULT);
-
- if (.@gf & RB_DISPBOTTOM)
- dispbottom("ERROR: "+.@msg$);
-
- if (.@gf & RB_DEBUGMES)
- debugmes("[Warning] "+.@msg$);
-
- if (.@gf & RB_SPEECH)
- mesc("ERROR, REPORT ME! "+.@msg$, 1);
-
- if (.@gf & RB_IRCBROADCAST)
- channelmes("#world", "Error in script: "+.@msg$);
-
- if (.@gf & RB_GLOBALANNOUNCE)
- announce("Error in script: "+.@msg$, bc_all);
-
- if (.@gf & RB_PLEASEREPORT|RB_DISPBOTTOM)
- dispbottom("Please take a screenshot and report this bug, explaining how it happened.");
-
- if (.@gf & RB_PLEASEREPORT|RB_SPEECH)
- mesc("Please take a screenshot and report this bug, explaining how it happened."), 1;
-
- if (.@gf & RB_ISFATAL) {
- if (.@gf & RB_SPEECH) {
- mesc l("This error is fatal."), 1;
- close;
- }
- if (.@gf & RB_DISPBOTTOM)
- dispbottom("This error is fatal, we stop execution.");
-
- if (.@gf & RB_DEBUGMES)
- debugmes("[Error] The error is fatal.");
- end;
- }
-
- return getarg(2, 0);
-
-}
-
// Upon entering a town
// EnterTown( LocName )
function script EnterTown {