summaryrefslogtreecommitdiff
path: root/npc/functions/main.txt
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2016-02-13 18:05:23 +0100
committerReid <reidyaro@gmail.com>2016-02-13 18:05:23 +0100
commit5689ae74b9d0ca60b714c076b244257d89f22e0f (patch)
tree7e63ff39a449cf94b0afda3a935de35b88d829b5 /npc/functions/main.txt
parent98bd50ebfbff30d285e69a900245557af8c4f0c7 (diff)
downloadserverdata-5689ae74b9d0ca60b714c076b244257d89f22e0f.tar.gz
serverdata-5689ae74b9d0ca60b714c076b244257d89f22e0f.tar.bz2
serverdata-5689ae74b9d0ca60b714c076b244257d89f22e0f.tar.xz
serverdata-5689ae74b9d0ca60b714c076b244257d89f22e0f.zip
Clean up and remove some useless space and newline.
Diffstat (limited to 'npc/functions/main.txt')
-rw-r--r--npc/functions/main.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/npc/functions/main.txt b/npc/functions/main.txt
index a9edd4a1..3303658c 100644
--- a/npc/functions/main.txt
+++ b/npc/functions/main.txt
@@ -76,7 +76,6 @@ function script strip {
return substr(.@s$, .@start, .@end);
}
-
// Function to show narrator text. Accepts string args.
// If first arg is a number N, then it represents bit flags.
// Bit flags :
@@ -113,7 +112,6 @@ function script narrator {
return;
}
-
// Function to show NPC speech. Accepts string args.
// If first arg is a number N, then it represents bit flags.
// Bit flags :
@@ -151,7 +149,6 @@ function script speech {
return;
}
-
// Show debug message if .debug variable of NPC is set to 1
function script npcdebug {
if (getvariableofnpc(.debug, strnpcinfo(3)))
@@ -159,7 +156,6 @@ function script npcdebug {
return;
}
-
function script abs {
.@n = getarg(0);
return .@n >= 0 ? .@n : -.@n;